美文网首页
matplotlib.pyplot使用方法

matplotlib.pyplot使用方法

作者: 江魁 | 来源:发表于2017-11-27 12:19 被阅读0次

导入包matplotlib.pyplot as plt

折线图:plt.plot()

散点图:plt.scatter()

直方图:plt.hist()

数轴标签:plt.xlable(’name’);plt.ylable(’name’)

数据标签:plt.xticks([,,,],[‘’,’’,’',])

标题:plt.title

查看帮助:help(函数)

翻转横纵坐标:dataFrame = dataFrame1.sort(["横坐标"],ascending=False)

相关文章

网友评论

      本文标题:matplotlib.pyplot使用方法

      本文链接:https://www.haomeiwen.com/subject/vpgrbxtx.html