You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In utils.load_data:
data['time'] = pd.date_range('1/1/2000', periods=data.shape[0], freq='600s')
This means the engines run sequentially. If not, why not use the following code:
starting_date = pd.Timestamp(2000, 1, 1)
data['time'] = [starting_date + pd.Timedelta(x * 10, 'm') for x in data['time_in_cycles']]
The text was updated successfully, but these errors were encountered:
In utils.load_data:
data['time'] = pd.date_range('1/1/2000', periods=data.shape[0], freq='600s')
This means the engines run sequentially. If not, why not use the following code:
starting_date = pd.Timestamp(2000, 1, 1)
data['time'] = [starting_date + pd.Timedelta(x * 10, 'm') for x in data['time_in_cycles']]
The text was updated successfully, but these errors were encountered: