编程语言
首页 > 编程语言> > python – Matplotlib pyplot.title(string)返回错误

python – Matplotlib pyplot.title(string)返回错误

作者:互联网

当我调用pyplot.title(‘some string’)时会抛出异常,’str’对象不可调用’.
我从matplotlib在线文档中复制了以下内容:

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()工作正常

我在iMac上使用python 2.7.5和matplotlib的最新版本,带有I7处理器OSX 10.8和8 gig ram以及ipython笔记本.

有谁知道发生了什么?

解决方法:

它发生在我身上因为我试图做plot.title =“Some string”所以重写了title()方法.这就是它发生的确切原因:).
正如其他人所说,你只需要重启内核,无需重新安装.

标签:python,matplotlib,ipython-notebook
来源: https://codeday.me/bug/20191006/1859316.html