在多个窗口而不是macOS的选项卡中打开多个Matplotlib图形

时间:2019-01-11 21:01:37

标签: python macos matplotlib

我想使用macosx后端在python中使用Matplotlib创建多个图形。目前,我的代码如下所示:

plt.figure(1, figsize=(9, 3))
#Sets ticks, the title, and the x and y values
make_plot(data)
plt.figure(2, figsize=(5, 3))
make_plot(other_data)
plt.show()

这将创建一个带有两个标签的窗口。一个用于图1,另一个用于图2。我希望两个图都在不同的窗口(而不是选项卡)中打开。 我该如何实现?

编辑: 这是一个最小的代码示例:

import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0, 2, 100)

f1 = plt.figure(1)
plt.plot(x,x**2)

f2 = plt.figure(2)
plt.plot(x,x**2)
plt.show()

0 个答案:

没有答案