DATA2001 期末知识点概括
文章目录DATA2001 期末知识点概括前言week 2 Data Analysis with
Python
Categorical Data
每周考点大多来自于学校lecture,有的小细节没有总结上,希望补充说明。
week 2 Data Analysis with
Python
Categorical Data
在编辑代码时碰到了这个问题:'
Datetime
Properties
'
object
has no
attribute
'weekday_name',网上的方法都不大管用,希望有大神能帮忙看一下,感谢感谢!
import
pandas
as pd
pd.set_option('display.unicode.ambiguous_as_wide',True)
pd.set_option('display.unicode.east_asian_width',True)
df=pd.read_excel('超市营
python
提取年月日遇到的问题:‘Series‘
object
has no
attribute
‘month‘ 和 ‘str‘
object
has no
attribute
‘month‘报错
数据分析中经常要对日期特征进行拆分,提取年份、月份和日期等信息。过程中遇到这样的报错:
Attribute
E
rror
: ‘Series’
object
has no
attribute
‘month’
Attribute
E
rror
: ‘str’
object
has no
attribute
‘month’
问题分析一:数据的格式不对
使用
datetime
模块在dataframe表格中提取日期中的月份信息,需要使用map()/apply() 函数来实现(df[“month”] = df[“date”].
本文主要介绍了
Attribute
E
rror
: ‘Timestamp’
object
has no
attribute
‘dt’,希望能对学习
pandas
的同学们有所帮助。
1. 问题描述
2. 解决方案
week = pd.
Datetime
Index
(data['place_order_time'])
data['weekday'] = week.weekday_name()
报错为
Attribute
E
rror
: 'Timestamp'
object
has no
attribute
'weekday_name'
是因为weekday_name