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
And, results_df = results_df.append(...) is the following error. AttributeError: 'DataFrame' object has no attribute 'append'
I can run it by changing to the following code. results_df = pd.concat([results_df, pd.DataFrame([{'timestamp' : clean_timestamp , 'value' : row['target_value'], 'source': 'actual'}])], ignore_index=True)
The text was updated successfully, but these errors were encountered:
Execution fails because dateutil is not imported.
And,
results_df = results_df.append(...)
is the following error.AttributeError: 'DataFrame' object has no attribute 'append'
I can run it by changing to the following code.
results_df = pd.concat([results_df, pd.DataFrame([{'timestamp' : clean_timestamp , 'value' : row['target_value'], 'source': 'actual'}])], ignore_index=True)
The text was updated successfully, but these errors were encountered: