我使用pandas的应用功能:
def get_value(x):
#processing
return x
df['result'] = df['data'].apply(get_value)
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
如何避免此警告?