我正在尝试使用以下代码定位数据集的时区:
df['Date and Time'] = df['Date and Time'].astype('datetime64')
df['Date and Time'] = df.apply(lambda r : r['Date and Time (RW)'].tz_localize(r['Zone']), 1)
但是,我不断收到错误消息,内容是:
““浮动”对象没有属性“ utcoffset””,“出现在索引30852”
当我尝试查看导致错误的数据时:
df[(df.index==30852)] # actually it shows that there is no data.
我试图通过运行以下代码来删除该索引处的数据:
df.drop(df.index[30852], inplace=True)
但是它没有用,因为没有数据。
什么可能导致此错误?