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
Describe the issue
When trying to ask beaker to add a new column named timestamp that is a timestamp representation of the date column, the following error occured.
/tmp/ipykernel_23706/1580995843.py:1: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
filtered_df['timestamp'] = pd.to_datetime(filtered_df['date'])
The text was updated successfully, but these errors were encountered:
Describe the issue
When trying to ask beaker to add a new column named timestamp that is a timestamp representation of the date column, the following error occured.
The text was updated successfully, but these errors were encountered: