当前位置 : 主页 > 网络编程 > 其它编程 >

matplotlib.pyplot如何绘制多张子图

来源:互联网 收集:自由互联 发布时间:2023-07-02
plt.figure(figsize(10,10))foriinrange(25):plt.subplot(5,5,i+1)plt.subplot(a,b,i+1)a*b25pl plt.figure(figsize=(10,10))for i in range(25): plt.subplot(5,5,i+1) //plt.subplot(a,b,i+1) a*b>=25 plt.xticks([]) plt.yticks([]) plt.grid(False) plt.im
plt.figure(figsize(10,10))foriinrange(25):plt.subplot(5,5,i+1)plt.subplot(a,b,i+1)a*b25pl

plt.figure(figsize=(10,10))for i in range(25):  plt.subplot(5,5,i+1)  //plt.subplot(a,b,i+1) a*b>=25  plt.xticks([])  plt.yticks([])  plt.grid(False)  plt.imshow(train_images[i], cmap=plt.cm.binary)  plt.xlabel(class_names[train_labels[i]])plt.show()

上一篇:03.查看状态和历史
下一篇:没有了
网友评论