解释python参数fig.add_subplot(111)

找了好几个文档总结了下括号里的参数代表的含义
(xxx)这里前两个表示几*几的网格,最后一个表示第几子图
可能说的有点绕口,下面上程序作图一看说明就明白

import matplotlib.pyplot as plt
fig = plt.figure(figsize = (2,2)) 
ax = fig.add_subplot(111)

解释python参数fig.add_subplot(111)_第1张图片

import matplotlib.pyplot as plt
fig = plt.figure(figsize = (5,5)) 
ax = fig.add_subplot(221)
ax = fig.add_subplot(222)
ax = fig.add_subplot(223)
ax = fig.add_subplot(224)

解释python参数fig.add_subplot(111)_第2张图片

你可能感兴趣的:(Python,fig.add_subplot,解释python参数)