我在这里有一个要在pycharm中显示的测试图
import numpy as np
import matplotlib.pyplot as plt
# Come up with x and y
x = np.arange(0, 5, 0.1)
y = np.sin(x)
# Just print x and y for fun
print(x)
print(y)
# Plot the x and y and you are supposed to see a sine curve
plt.plot(x, y)
# Without the line below, the figure won't show
plt.interactive(False)
plt.show()
我添加了一些注释以提高可读性。
但是,当我运行脚本时,pycharm的SciView
窗口中什么也没有显示。为什么会这样呢?我调查了其他资源,这些设置plt.interactive(False)
可能会有所帮助,但是我在没有运气的情况下尝试了这两个选项,有人可以帮助吗?