axis的位置说明。

1
2
3
4
5
6
# 导入包
import seaborn as sns
from pandas import Series,DataFrame
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
1
2
3
4
5
6
7
# 拿到小费数据集
tips = sns.load_dataset('tips')

# 数据介绍: total_bill列为消费总金额;tip列为小费金额;sex列为顾客性别;smoker列为顾客是否抽烟;day列为消费的星期;time列为聚餐的时间段;size列为聚餐人数

# 查看前5行数据
tips.head()

image.png

1
2
tips = tips.drop(['sex','smoker','day','time'],axis=1)
tips.head()

image.png

axis使用 0 值表示沿着每一列或行标签\索引值向下执行方法;使用 1 值表示沿着每一行或者列标签模向执行对应的方法。

image.png

如上图,在 Pandas 中, axis 的位置图示。