码迷,mamicode.com
首页 > 其他好文 > 详细

pandas DataFrame 警告(SettingWithCopyWarning)

时间:2019-11-25 09:55:15      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:view   dex   try   document   ocs   dataframe   target   exe   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
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy

简单述之:

A为一个dataframe,

B = A[[‘a‘, ‘b‘]]
B[‘a‘] = B[‘a‘] + 1

将会有上面的警告,提示最后一行有问题,但实际上应该修改上一行,为:
B = A.loc[:,[‘a‘,‘b‘]]

详见:

https://www.cnblogs.com/pig-fly/p/7875472.html

pandas DataFrame 警告(SettingWithCopyWarning)

标签:view   dex   try   document   ocs   dataframe   target   exe   value   

原文地址:https://www.cnblogs.com/sxinfo/p/11925357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!