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
When I run get_trend_stats I get the following warning multiple times:
featexp/base.py:23: 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
The origin of the problem is the fact that get_grouped_data changes its input dataframe. It might be better to copy the input data before doing anything with it.
Setup:
Python 3.8.13
featexp 0.0.7
Pandas 1.4.3
The text was updated successfully, but these errors were encountered:
When I run
get_trend_stats
I get the following warning multiple times:The origin of the problem is the fact that
get_grouped_data
changes its input dataframe. It might be better to copy the input data before doing anything with it.Setup:
The text was updated successfully, but these errors were encountered: