Python常用库之三:Matplotlib

Posted 章朔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python常用库之三:Matplotlib相关的知识,希望对你有一定的参考价值。

导入模块

1 import matplotlib.pyplot as plt
2 import seaborn as sb

绘制条形图

countplot(data:数据集, x:x坐标轴, color:条形图颜色, order:排序)

color_palette():返回一个RGB元组列表

test = pd.read_csv(pokemon.csv)
print(test.shape)
print(test.tail(10))
# value_counts函数统计各序列频率,并降序
generation_order = test[generation_id].value_counts().index
print(generation_order)
# color_palette 返回一个RGB元组列表
base_color = sb.color_palette()[0]
sb.countplot(data=test, x=generation_id, color=base_color, order=generation_order)
plt.show()

xticks(rotation:旋转度数):更改绘制x轴标签方向(与水平方向的逆时针夹角度数)

yticks(rotation:旋转度数):更改绘制y轴标签方向(与垂直方向的逆时针夹角度数)

1 plt.xticks(rotation=90)
2 plt.yticks(rotation=45)

 

以上是关于Python常用库之三:Matplotlib的主要内容,如果未能解决你的问题,请参考以下文章

Python常用标准库之fileinput

Python常用标准库之fileinput

Python常用标准库之sys

Python常用标准库之sys

Python常用标准库之os

Python常用标准库之os