我更新了我的 Anaconda 版本,当我尝试在 Jupyter 笔记本中使用 ipywidgets 时,我得到了几个图形而不是交互式图形:
%matplotlib inline
from matplotlib import pyplot as plt
import numpy as np
from ipywidgets import interact
def pinta(freq):
x = np.linspace(0,3,200)
y = x * np.sin(freq * x)
plt.plot(x,y,'r')
interact(pinta, freq= (2 * np.pi, 2 * np.pi *10))