3
我最近開始學習python和matplotlib。我面對的問題是,我總是得到一個黑色的窗口作爲情節輸出。Matplotlib陰謀窗口是黑色
查看下面的簡單代碼。
import numpy as np
import matplotlib.pyplot as plt
import pylab
x = np.arange(0, 5, 0.1)
y = np.sin(x)
#plot the x and y and you are supposed to see a sine curve
plt.plot(x, y)
pylab.show()
我從matplotlib頁面執行代碼樣本相同的結果。 有沒有人有任何想法,這從哪裏來,以及如何克服這一點?
我正在使用操作系統Linx Mint。
對不起!操作系統Linx Mint – Robert
實際上,不鼓勵使用pylab,所以試試plt.show()來代替它,也許它會有所幫助? http://matplotlib.org/faq/usage_faq.html#matplotlib-pyplot-and-pylab-how-are-they-related – omdv
同樣的結果,黑色的窗口。 – Robert