上传者: 38707153
|
上传时间: 2021-12-06 15:23:29
|
文件大小: 65KB
|
文件类型: -
在用matplotlib绘制图形时,我经常要绘制子图,此时我们就可以使用函数
plt.subplots()
fig,ax = plt.subplots()的意思建立一个fig对象和建立一个axis对象,当我绘制2*2的个子图时候我们需要
#建立一个fig对象和一个axis对象,figsize设置对象的大小
fig,ax = plt.subplots(2,2,figsize=(9,25))
#选定第2个子图
ax1 = plt.subplot(221)
ax1.scatter(x1,y1)
#选定第2个子图
ax1 = plt.subplot(222)
ax1.scatter(x2,y2)
#