AttributeError: ‘DatetimeProperties’ object has no attribute ‘weekday_name’ 的解决方法

Posted 叶庭云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AttributeError: ‘DatetimeProperties’ object has no attribute ‘weekday_name’ 的解决方法相关的知识,希望对你有一定的参考价值。

一、问题

AttributeError: ‘DatetimeProperties’ object has no attribute ‘weekday_name’

简单测试,运行如下代码:

import pandas as pd

# 创建日期
dates = pd.Series(pd.date_range("7/26/2021", periods=3, freq="D"))
# 查看星期几
print(dates.dt.weekday_name)
# 只显示数值
print(dates.dt.weekday)

二、解决方法

weekday_name改为day_name()

import pandas as pd

# 创建日期
dates = pd.Series(pd.date_range("7/26/2021", periods=3, freq="D"))
# 查看星期几
print(dates.dt.day_name())
# 只显示数值
print(dates.dt.weekday)

结果如下:

推荐阅读:
https://blog.csdn.net/weixin_43896318/article/details/106262821
https://blog.csdn.net/IT_SoftEngineer/article/details/107420663
https://www.pythonheidong.com/blog/article/586790/1e0189487630dc9e2d5c/

以上是关于AttributeError: ‘DatetimeProperties’ object has no attribute ‘weekday_name’ 的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

AttributeError:“datetime”模块没有属性“strptime”

日期时间、熊猫和时区问题:AttributeError:“datetime.timezone”对象没有属性“_utcoffset”

AttributeError:“模块”对象没有属性“作者”

初学者 Python:AttributeError:'list' 对象没有属性

AttributeError:“字节”对象没有属性“告诉”

AttributeError: 'RDD' 对象没有属性 'show'