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