理解 fig,ax = plt.subplots()
fig,ax = plt.subplots() 等价于:
fig = plt.figure()
ax = fig.add_subplot(1,1,1) 前两个参数1,1 表示生成1x1 个子图; 最后一个参数1,代表第一个子图。
例如:
fig, ax = plt.subplots(1,3),其中参数1和3分别代表子图的行数和列数,一共有 1x3 个子图像。函数返回一个figure图像窗口和子图ax的array列表。
fig, ax = plt.subplots(1,3,figsize=(15,7)),加入figsize参数就会创建一个15x7大小的画图窗口,里面分割为 1行3个子图
聪明
皮实
乐观
自省