我有一个返回fig, ax
对的函数,但是我想把结果放在gridspec
的子图中。
fig, ax = draw_football_field(dimensions, size) # this is the output that I want to copy to another subplot
fig = plt.figure(constrained_layout=True)
gs = fig.add_gridspec(18, 9)
ax = fig.add_subplot(gs[3:6, 1:3], zorder=1) #this is the target subplot
你知道怎么做吗?
1条答案
按热度按时间fwzugrvs1#
将在一个
Figure
上创建的Axes
对象传递给Figure
对象的另一个示例是很重要的,因为Axes
被设计为存在于一个特定的Figure
示例上。我建议您更改
draw_footlball_field
函数以接受Axes
对象。现在,您可以沿着以下方式执行操作: