我开始使用Matplotlib的交互式绘图:
%matplotlib notebook
import matplotlib.pyplot as plt
fig, axes = plt.subplots(1, figsize=(8, 3))
plt.plot([i for i in range (10)],np.random.randint(10, size=10))
plt.show()
Run Code Online (Sandbox Code Playgroud)
任何人都知道是否有办法隐藏交互模式的工具栏?