plt

plt.figure(num=3)

plt.plot(x,y,color='red',linewidth=1.0,linestyle='--')     scatter、bar

plt.show()

plt.text(x, y, 内容)

坐标轴:

  plt.xlabel('x')

  plt.xlim(a, b)         坐标范围

  plt.xticks([],[])     改变原来的坐标表示,可将坐标转化为字符串

  plt.xticks(())          去除坐标轴

  plt.gca()  get current axis

  ax.spines['right'].set_color('none')

  ax.xaxis.set_ticks_position('bottom')

图例:

  plt.plot(x, y, label='abc')

  plt.legend(loc=,handles,labels=)

    loc:best、upper right

你可能感兴趣的:(plt)