Pandas中,画直方图Hist 的四种方法,以及其他绘图

Pandas中,画直方图Hist 的四种方法,以及其他绘图

 

Pandas中,画直方图Hist 的四种方法:

1、画直方图 sns.distplot(hist=True) 或者 df.plot(kind='hist') 或者 plt.hist() 或者 df.hist() :

 

  • # 方法一:

# 使用Pandas的画图函数:df.hist()
data_train['Age'].hist(bins=100)

 

  • # 方法二:

# 使用Pandas的画图函数:df.plot(kind='hist')
# 画柱状图使用:df.plot(kind='bar'), 画核密度图:df.plot(kind='kde')
data_train['Age'].plot(kind='hist',bins=100)

 

  • # 方法三:

# 使用seaborn的画图函数:sns.displot(hist=True)
sns.distplot(data_train.Age,hist=True,bins=100,kde=False)

 

  • # 方法四:

# 使用matplotlib的画图函数plt.hist()
plt.hist(data_train.Age,bins=100)

from matplotlib.pyplot import MultipleLocator

fig=plt.figure(figsize=(20,10))
# plt.subplot(1,2,1)
ax1=fig.add_subplot(1,2,1)


# 方法一:
# 使用Pandas的画图函数:df.hist()
data_train['Age'].hist(bins=100)


# 方法二:
# 使用Pandas的画图函数:df.plot(kind='hist')
# 画柱状图使用:df.plot(kind='bar'), 画核密度图:df.plot(kind='kde')
data_train['Age'].plot(kind='hist',bins=100)


# 方法三:
# 使用seaborn的画图函数:sns.displot(hist=True)
sns.distplot(data_train.Age,hist=True,bins=100,kde=False)


# 方法四:
# 使用matplotlib的画图函数plt.hist()
plt.hist(data_train.Age,bins=100)



ax1.set_xlabel("年龄")
ax1.set_ylabel("数量")
ax1.set_xlim(0,100)

# 设置坐标轴刻度的间隔为 5
locator=MultipleLocator(5)
ax1.xaxis.set_major_locator(locator)

plt.show()

ax2=fig.add_subplot(1,2,2)
sns.boxplot(y='Age',data=data_train,showfliers=False)
plt.show()

 方法一:                                                                                     方法二:

  Pandas中,画直方图Hist 的四种方法,以及其他绘图_第1张图片             Pandas中,画直方图Hist 的四种方法,以及其他绘图_第2张图片

 

 方法三:                                                                                     方法四: 

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第3张图片                                Pandas中,画直方图Hist 的四种方法,以及其他绘图_第4张图片

 

2、画核密度分布图 sns.distplot(kde=True) 或者 df.plot(kind='kde'):

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第5张图片

 

3、画风琴图 sns.violinplot():

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第6张图片

 

4、画统计图 sns.countplot():

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第7张图片

 

5、画柱状图 sns.barplot() 或者 df.plot(kind='bar') 或者 plt.bar() 或者 df.bar() :

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第8张图片

 

 

6、画饼图  df.plot(kind='pie') 或者 plt.pie() 或者 df.pie() :

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第9张图片

Pandas中,画直方图Hist 的四种方法,以及其他绘图_第10张图片

你可能感兴趣的:(Pandas,数字图像处理)