在DataFrame的切片副本上设置的熊猫警告

时间:2020-05-13 16:25:49

标签: python pandas

我有一个熊猫数据框:

enter image description here

列月份为对象dtype,我想使用熊猫将其更改为Timestamp格式,所以我这样做:

df ['month'] = pd.to_datetime(df ['month'])

但是我得到这个警告:

试图在DataFrame的切片副本上设置一个值。 尝试改用.loc [row_indexer,col_indexer] = value

请参阅文档中的警告: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy

我去了建议的网站,但我真的不知道我该如何更改代码才能做到这一点。

0 个答案:

没有答案