Pandas使用教程(八)

一、How to use the MultiIndex in pandas?

Pandas使用教程(八)_第1张图片
Question:如何select

Pandas使用教程(八)_第2张图片

Pandas使用教程(八)_第3张图片

Pandas使用教程(八)_第4张图片
stocks.reset_index()将index恢复默认

二、New change in 0.18.1

1.Create a datetime column from a DataFrame
Pandas使用教程(八)_第5张图片

Pandas使用教程(八)_第6张图片

2.Create a category column during file reading

Pandas使用教程(八)_第7张图片

三、New change in 0.19.0

1.Convert the data type of multiple columns at once
Pandas使用教程(八)_第8张图片

四、New change in 0.20.0

1.Apply multiple aggregations on a Series or DataFrame
Pandas使用教程(八)_第9张图片
the followings are new:
Pandas使用教程(八)_第10张图片

五、New change in 0.21.0

1.Aliases(别名)have been added for isnull and notnull

Pandas使用教程(八)_第11张图片
Pandas使用教程(八)_第12张图片

2.drop now accepts “index” and “columns” keywords

删除行:
Pandas使用教程(八)_第13张图片
删除列:

Pandas使用教程(八)_第14张图片

3.rename and reindex now accept “axis” keyword

Pandas使用教程(八)_第15张图片
especially:mapper can be a function:
Pandas使用教程(八)_第16张图片

4.Ordered categories must be specified independent of the data

Pandas使用教程(八)_第17张图片

你可能感兴趣的:(python)