我有这样的代码
from ipywidgets import interactive
def f(m, b):
plt.figure(2)
x = np.linspace(-10, 10, num=1000)
plt.plot(x, m * x + b)
plt.ylim(-5, 5)
plt.show()
interactive_plot = interactive(f, m=(-2.0, 2.0), b=(-3, 3, 0.5))
output = interactive_plot.children[-1]
interactive_plot
我试图通过将绘图大小设置为无效来增加大小 plt.figure(figsize =(10,5)) 然后,我尝试扩大输出高度。 output.layout.height ='550px' 绘图区域变大了,但是图表仍然很小,留下了很大的空白。