Skip to content
This repository has been archived by the owner on Jun 14, 2019. It is now read-only.

Commit

Permalink
Fix bug in reversing dates
Browse files Browse the repository at this point in the history
  • Loading branch information
ceholden committed Jan 5, 2016
1 parent 1903369 commit 6a21e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tstools/src/ts_driver/drivers/timeseries_yatsm.py
Expand Up @@ -386,7 +386,7 @@ def _fetch_results_live(self):
self.yatsm_model.fit(
np.flipud(self.X[clear, :]),
np.fliplr(Y_data[:, clear]),
np.fliplr(self.dates[clear]))
self.dates[clear][::-1])
else:
self.yatsm_model.fit(
self.X[clear, :],
Expand Down

0 comments on commit 6a21e09

Please sign in to comment.