matplotlib.pyplot使用方法

导入包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使用方法)