gpt4 book ai didi

python - 属性错误 : 'Int64Index' object has no attribute 'month'

转载 作者:行者123 更新时间:2023-12-04 13:42:39 33 4
gpt4 key购买 nike

我有一些带有三个单独列(日期、时间、千瓦)的时间序列数据,如下所示:

Date     Time        kW
3/1/2011 12:15:00 AM 171.36
3/1/2011 12:30:00 AM 181.44
3/1/2011 12:45:00 AM 175.68
3/1/2011 1:00:00 AM 180.00
3/1/2011 1:15:00 AM 175.68

并直接从 Pandas 读取 csv 文件,我可以解析日期和时间:
df= pd.read_csv('C:\\Users\\desktop\\master.csv', parse_dates=[['Date', 'Time']])

这似乎工作得很好,但问题是我想在 Pandas 中创建另一个数据框来表示月份的数值。如果我做:
df['month'] = df.index.month

抛出一个错误:
AttributeError: 'Int64Index' object has no attribute 'month'
我也希望创建额外的数据帧来表示时间戳的日期、分钟、小时......任何提示都非常感谢......

最佳答案

您可以使用日期时间访问器并提取月份

df['month'] = df['Date_Time'].dt.month

关于python - 属性错误 : 'Int64Index' object has no attribute 'month' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54639490/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com