欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

matplotlib系列——折线图

程序员文章站 2022-06-27 22:03:38
详细教程:https://www.cnblogs.com/onemorepoint/p/7482644.html ......
  import numpy as np
  import matplotlib.pyplot as plt
  import matplotlib

  #数据准备
    #numpy.linspace(start, stop, num=50, endpoint=true, retstep=false, dtype=none)
    x=np.linspace(0, 2* np.pi, 10)
    y=np.sin(x)
    
    #画线
    #lw=线宽
    #label=本条线的图例名称
    #marker
    #markeredgewidth 或 mew
    line1=plt.plot(x,y,'g',label='line_1',lw=2,marker='<',mew=3)
    
    plt.axis([min(x), max(x), min(y), max(y)])#坐标轴范围
    plt.legend()#显示图例
    plt.xlabel("x轴",fontproperties='simhei',fontsize=8)#坐标轴标注
    plt.ylabel("y轴",fontproperties='simhei',fontsize=8)
    plt.title('折线图',fontproperties='simhei',fontsize=12)#标题
    plt.show()

 

matplotlib系列——折线图

详细教程: