import matplotlib.pyplot as plt
plt.ylabel("Grade") #设置Y轴标签
plt.plot([1,5,9,10,12,15], [3,2,7,9,0,1]) #(X轴,Y轴)
plt.savefig('test', dpi=600) #另存为PNG文件,每英寸像素点为600
plt.axis([-1, 10, 0, 12]) #设置坐标轴范围,x∈[-1, 10] y[∈0, 6]
plt.show() #显示图像
import matplotlib.pyplot as plt
plt.subplot(a, b, c) #将绘图区域划分为a行、b列的a*b块,选取第c块进行图像绘制
例:
import matplotlib.pyplot as plt
import numpy as np
def f(t):
return np.exp(-t) * np.cos(2*np.pi*t)
a = np.arange(0.0, 5.0, 0.02)
plt.subplot(2,1,1)
plt.plot(a, f(a))
plt.subplot(2,1,2)
plt.plot(a, np.cos(2*np.pi*a), 'r--')
plt.show()
结果:
plt.plot(x, y, format_string, **kwargs)
通过修改全局字体达到目的,不推荐
import matplotlib
matplotlib.rcParams['font.family'] = 'SimHei'
在有中文输入的地方增加属性: fontproperties
import maplotlib
plt.xlabel('横轴:时间', fontproperties='SimHei') #只对X轴有效
plt.text(x, y, s, **kwargs)
(x, y)添加文本的坐标位置,s为添加的文本
plt.annotate(s, xy=arrow_crd, xytext=text_crd, arrowprops=dict)
s:要注解的字符串
xy:箭头所在位置
xytext:文本所在位置
arrowprops:箭头相关参数
plt.subplot2grid(GridSpec, CurSpec, colspan=1, rowspan=1)
例:
plt.subplot2grid((3,3),(0,0),colspan=3)
plt.subplot2grid((3,3),(1,0),colspan=2)
plt.subplot2grid((3,3),(1,2),rowspan=2)
plt.subplot2grid((3,3),(2,0))
plt.subplot2grid((3,3),(2,1))
结果:
import matplotlib.gridspec as gridspec
gs = gridspec.GridSpec(3,3)
ax1 = plt.subplot(gs[0, :]) #gs[r,c] r为行, c为列
ax2 = plt.subplot(gs[1, :-1])
ax3 = plt.subplot(gs[1:, -1])
ax4 = plt.subplot(gs[2, 0])
ax5 = plt.subplot(gs[2, 1])
结果: