首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
attributefrror专题
AttributeFrror:DatetimeIndex‘object has no attribute ‘weekofyear‘
报错,原因,pandas的DatetimeIndex对象的weekofyear已经弃用,解决办法 使用.isocalendar().week方法再将其转换为列表,再将其转换为pandas的Index对象实现同样的效果 代码: dti=pd.to_datetime(['1/1/2018',np.datetime64('2018-01-01'),datetime.datetime(2018,1,
阅读更多...