Jupyter不显示Matplotplib图

时间:2019-08-14 17:05:00

标签: python python-3.x matplotlib jupyter-notebook

不同于How to make IPython notebook matplotlib plot inline
我尝试重新启动内核,两次内联使用%matplotlib两次,一次一次使用%matplotlib笔记本两次,没有变化。

尝试%matplotlib笔记本,重新安装anaconda,plt.show(); (;最后),没有任何效果。它只是什么都没有显示。

plt.savefig("test.png")

保存精美的图形图片,因此可以在后端使用。

%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2*np.pi*t)
plt.plot(t, s)

plt.show()

使用%matplotlib笔记本,它会显示一个大空白,但是将鼠标悬停在上方会在右下角显示坐标。 when using %matplotlib notebook, I can interact with it, so hovering my mouse over it displays the x and y coordinates on the bottom right corner

0 个答案:

没有答案