| 使用实例 |
| |
- 基础属性
- shape
- indexs
- columns
- values
- dtype/dtypes
- 汇总和计算描述统计
- count()
- value_count()
- describe()
- head()
- tail()
| |
- 丢弃值
- 缺失值处理
- isnull() & notnull()
- dropna()
- fillna()
- 值替换
- 重复值处理
- duplicated()
- is_unique()
- unique()
- drop_duplicated()
- 排序&排名
- 索引设置
- reindex()
- set_index()
- reset_index()
- stack() & unstack()
- 修改列名
| |
| |
|
| merge()介绍 NaN值匹配模式 |
- 图解“split-apply-combine”
- 数据的分类split:
- groupby()
- 以column进行分组
- 以index进行分组
- 分组遍历
- 数据的应用apply:
- 数据的转译tansformaton:
- 数据的过滤filteration:
- 数据透视表
- pivot()
- pivot_table()
- crosstab()
| |