我试图将pandas.core.series.Series类型的pandas数据框中的列转换为日期时间。
我已经看到多个答案说要做这样的事情:
DF['ABC'] = pd.to_datetime(DF['ABC'])
然而,我收到此错误:
__main__:1: 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
有什么想法吗?我使用Anaconda和Python 3,我的所有软件包都是最新的。