本文主要是介绍解释python参数fig.add_subplot(111),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
找了好几个文档总结了下括号里的参数代表的含义
(xxx)这里前两个表示几*几的网格,最后一个表示第几子图
可能说的有点绕口,下面上程序作图一看说明就明白
import matplotlib.pyplot as plt
fig = plt.figure(figsize = (2,2))
ax = fig.add_subplot(111)
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)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!