数据可视化工具matplotlib.pyplot的使用

matplotlib是python中常用的数据可视化工具matplotlib,输入数据类型为numpy。

 

常用操作如下:

import matplotlib.pyplot as plt

plt.title("Matylotlib demo")  # 标题名称

plt.xlabel("x")  # x轴名称

plt.ylabel("y")  # y轴名称

plt.plot(x,y)  # 画一组点(x,y)

plt.show() # 展示图

plt.subplot(211) # 绘画多个图,表示一共2行1列,本图是第1个

plt.hist(data,histtype="bar")  # 柱状图histogram

plt.scatter(x,y,s=area,c=colors,alpha=0.5,marker="o",linewidths=2) # 散点图

你可能感兴趣的:(python,python)