How do I multiply a column by a scalar in pandas version 1.4.1
and replace the old column without tripping SettingWithCopyWarning
. Could not find answer that worked for this version of pandas.
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
df.loc[:, "Fixed Rate 1"] *= (10**4)