Please suggest the right way of doing the following.
data_tr['loss'] = data_tr['loss'].apply(lambda x:x**0.25)
<ipython-input-368-59c3c700212e>: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
data_tr['loss'] = data_tr['loss'].apply(lambda x:x**0.25)