我正在学习使用matplotlib通过研究示例,许多示例似乎包括如下一行在创建一个单一的图之前…
fig, ax = plt.subplots()
下面是一些例子。
修改标记标签文本 http://matplotlib.org/examples/pylab_examples/boxplot_demo2.html
我看到这个函数被使用了很多次,即使这个例子只是试图创建一个图表。还有其他好处吗?subplots()的官方演示在创建单个图表时也使用f, ax = subplots,并且只在后面引用ax。这是他们使用的代码。
# Just a figure and one subplot
f, ax = plt.subplots()
ax.plot(x, y)
ax.set_title('Simple plot')