价格面议2020-11-04 15:35:07
可视化视图都有哪些?
散点图、折线图、直方图、条形图、箱线图、饼图、热力图等。
折线图
python源码:
import matplotlib.pyplot as plt
import matplotlib.font_manager as fm
yy=[1,2,3,4,5,6,3,1,7,8]
xx=[3,5,4,1,9,3,2,5,6,3]
zz=[2,2,4,7,4,8,2,4,5,6]
plt.plot(yy,color='r',linewidth=2,linestyle='-',label='Data 1')
plt.plot(xx,color='b',linewidth=2,linestyle='--',label='Data 2')
plt.legend(loc=3) #loc是调整图例的位置
plt.xlabel('X',fontproperties='simhei',fontsize=14) #fontsize字大小 fontproperties是字体
plt.ylabel('y轴名称',fontproperties='simhei')
plt.title('折线图',fontproperties='simhei')
plt.ylim(0,10)
plt.show()