這必須是一個非常基本的問題:我正在嘗試使用Matplotlib。以下是documentation的基本示例。Matplotlib不顯示數字
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0,5,0.1)
y = np.sin(x)
plt.plot(x,y)
我在ipython
,bpython
嘗試這樣做,默認的解釋(Ubuntu的10.10,64位)和我得到的都是這樣的消息:
[<matplotlib.lines.Line2D object at 0x3f14a90>]
我在做什麼錯?
或`plt.savefig`將結果保存在圖像文件中 – Philipp 2011-01-28 17:57:00