8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何处理 Pandas 中的 SettingWithCopyWarning

Lexi 2月前

242 0

背景我刚刚将我的 Pandas 从 0.11 升级到 0.13.0rc1。现在,应用程序弹出许多新警告。其中一个是这样的:E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A va...

背景

我刚刚将我的 Pandas 从 0.11 升级到 0.13.0rc1。现在,应用程序弹出许多新警告。其中一个是这样的:

E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
  quote_df['TVol']   = quote_df['TVol']/TVOL_SCALE

我想知道这到底是什么意思?我需要做些更改吗?

如果我坚持使用,该如何取消警告 quote_df['TVol'] = quote_df['TVol']/TVOL_SCALE

发出警告的功能

def _decode_stock_quote(list_of_150_stk_str):
    """decode the webpage and return dataframe"""

    from cStringIO import StringIO

    str_of_all = "".join(list_of_150_stk_str)

    quote_df = pd.read_csv(StringIO(str_of_all), sep=',', names=list('ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefg')) #dtype={'A': object, 'B': object, 'C': np.float64}
    quote_df.rename(columns={'A':'STK', 'B':'TOpen', 'C':'TPCLOSE', 'D':'TPrice', 'E':'THigh', 'F':'TLow', 'I':'TVol', 'J':'TAmt', 'e':'TDate', 'f':'TTime'}, inplace=True)
    quote_df = quote_df.ix[:,[0,3,2,1,4,5,8,9,30,31]]
    quote_df['TClose'] = quote_df['TPrice']
    quote_df['RT']     = 100 * (quote_df['TPrice']/quote_df['TPCLOSE'] - 1)
    quote_df['TVol']   = quote_df['TVol']/TVOL_SCALE
    quote_df['TAmt']   = quote_df['TAmt']/TAMT_SCALE
    quote_df['STK_ID'] = quote_df['STK'].str.slice(13,19)
    quote_df['STK_Name'] = quote_df['STK'].str.slice(21,30)#.decode('gb2312')
    quote_df['TDate']  = quote_df.TDate.map(lambda x: x[0:4]+x[5:7]+x[8:10])
    
    return quote_df

更多警告信息

E:\FinReporter\FM_EXT.py:449: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
  quote_df['TVol']   = quote_df['TVol']/TVOL_SCALE
E:\FinReporter\FM_EXT.py:450: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
  quote_df['TAmt']   = quote_df['TAmt']/TAMT_SCALE
E:\FinReporter\FM_EXT.py:453: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_index,col_indexer] = value instead
  quote_df['TDate']  = quote_df.TDate.map(lambda x: x[0:4]+x[5:7]+x[8:10])
帖子版权声明 1、本帖标题:如何处理 Pandas 中的 SettingWithCopyWarning
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Lexi在本站《pandas》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 总的来说,这样做的目的 SettingWithCopyWarning 是向用户(尤其是新用户)表明他们 可能 正在操作副本,而不是他们所认为的原始副本。存在 误报 (换句话说,如果你知道自己在做什么,那就没问题。一种可能性是简单地关闭(默认情况下是 warn )警告,正如@Garrett 建议的那样。

    这是另一个选择:

    In [1]: df = DataFrame(np.random.randn(5, 2), columns=list('AB'))
    
    In [2]: dfa = df.ix[:, [1, 0]]
    
    In [3]: dfa.is_copy
    Out[3]: True
    
    In [4]: dfa['A'] /= 2
    /usr/local/bin/ipython:1: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame.
    Try using .loc[row_index,col_indexer] = value instead
      #!/usr/local/bin/python
    

    您可以将 is_copy 标志设置为 False ,这将有效关闭 该对象的

    In [5]: dfa.is_copy = False
    
    In [6]: dfa['A'] /= 2
    

    如果您明确复制则不会发生进一步的警告:

    In [7]: dfa = df.ix[:, [1, 0]].copy()
    
    In [8]: dfa['A'] /= 2
    

    楼主上面展示的代码虽然合法,而且我可能也会这么做,但从技术上讲,这是出现此警告的一个案例,而不是误报。另一种避免出现警告的方法通过 进行选择操作 reindex ,例如

    quote_df = quote_df.reindex(columns=['STK', ...])
    

    或者,

    quote_df = quote_df.reindex(['STK', ...], axis=1)  # v.0.21
    
返回
作者最近主题: