plt.subplot()函数使用方法

subplot(nrows, ncols, plot_number)
或者写成subplot(nrows ncols plot_number)也行(中间不用逗号,前提是只能是三位数)
这个函数用来表示把figure分成nrows*ncols的子图表示,
nrows:子图的行数
ncols:子图的列数
plot_number 索引值,表示把图画在第plot_number个位置(从左下角到右上角)

 

你可能感兴趣的:(CS231n学习,CV,数据挖掘,深度学习,机器学习)