subplot的使用

#coding=utf-8
import matplotlib.pyplot as plt
import numpy as np

x=np.linspace(0,10,100)
sin_y=np.sin(x)
#对画布进行分区,将画布分为2行2列,图形画到第一个区域
plt.subplot(2,2,1)
#修改x y轴的上下限
plt.xlim(-5,20)
plt.ylim(-2,2)
plt.plot(x,sin_y)

#对画布进行分区,将画布分为2行2列,图形画到第4个区域
plt.subplot(2,2,4)
cos_y=np.cos(x)
plt.plot(x,cos_y)

plt.show()
subplot的使用_第1张图片
subplot的使用.png

你可能感兴趣的:(subplot的使用)