後settingwithcopywarning的錯誤,我得到這個錯誤:獲取即使使用的.loc
C:\Users\rt\Anaconda3\lib\site-packages\pandas\core\indexing.py:337: 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: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
self.obj[key] = _infer_fill_value(value)
C:\Users\rt\Anaconda3\lib\site-packages\pandas\core\indexing.py:517: 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: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
self.obj[item] = s
不過,我已經使用的.loc已經所以不知道爲什麼這個錯誤是發生。代碼大綱是這樣的:
for name, group in results.groupby():
for idx, row in group.iterrows():
group.loc[idx, 'area'] = 10.0
我使用最新的大熊貓(0.20.3)和Python(3.6)
你可以添加結果df嗎? – Dark