0
votes

i need help, im starting in python trying to fix an SettingWithCopyWarning:

code: grouploop['Ranking'] = grouploop['planLifePrice'].rank(ascending = True)

Warning Message:

:5: 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 grouploop['Ranking'] = grouploop['planLifePrice'].rank(ascending = True) :5: 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