PyCharm无法正确显示剧情

时间:2019-02-19 18:51:59

标签: python pycharm

我在这里有一个要在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)可能会有所帮助,但是我在没有运气的情况下尝试了这两个选项,有人可以帮助吗?

Here is what shows when i run the script

0 个答案:

没有答案