を返します。pyplot.title('some string')
を呼び出すと、例外がスローされます('str' object is not callable'
)。Matplotlib pyplot.title(string)はエラー
mu, sigma = 100, 15
x = mu + sigma * np.random.randn(10000)
# the histogram of the data
n, bins, patches = plt.hist(x, 50, normed=1, facecolor='g', alpha=0.75)
plt.xlabel('Smarts')
plt.ylabel('Probability')
plt.title('Histogram of IQ')
plt.text(60, .025, r'$\mu=100,\ \sigma=15$')
plt.axis([40, 160, 0, 0.03])
plt.grid(True)
plt.show()
と
TypeError Traceback (most recent call last)
<ipython-input-158-40fe7a831b06> in <module>()
8 plt.xlabel('Smarts')
9 plt.ylabel('Probability')
---> 10 plt.title('Histogram of IQ')
11 plt.text(60, .025, r'$\mu=100,\ \sigma=15$')
12 plt.axis([40, 160, 0, 0.03])
TypeError: 'str' object is not callable
pyplot.suptitle()
が私のpython 2.7.5とのmatplotlibの最新のリリースを使用していOK
を働く取得を: 私はmatplotlibのオンラインドキュメントから、次のコピーiMacにはI7プロセッサーのOSX 10.8と8ギガム・ラムとipythonノートブックが搭載されています。
何が起こっているのか知っていますか?
OSX 10.8.5でPython 2.7.5とmatplotlib 1.3.0で動作します。どのようにipythonとmatplotlibをインストールしましたか?上記のコードはあなたが喚起する唯一のコードですか? 'ipython notebook --pylab'を実行するか、それともどのように初期化しますか? –
私もこれを再生産することはできません。上記のコードで 'plt.title = 'blah''をどこかに持っていますか? – tacaswell
私はmatplotlibを再インストールしました(ピップアンインストール後にピップインストール)、すべて正常です。これの前に?plt.titleはplt.titleが文字列だったと私に言った。これで、plt.titleが関数であることが確認されました。私はそれをすべて捨てるが、それは働いているのか分からない。みんなありがとう。 – olben1