AttributeError: module 'matplotlib.mlab' has no attribute 'normpdf'
时间: 2023-11-01 13:59:22 浏览: 104
Python在Geany中调用matplotlib绘图时出现attributeerror错误
AttributeError: module 'matplotlib.mlab' has no attribute 'normpdf' 错误是由于matplotlib的mlab模块中没有normpdf函数引起的。该函数已在新版本的matplotlib中被弃用。为了解决这个问题,您可以尝试以下方法之一:
1. 使用matplotlib.pyplot模块中的normpdf函数代替mlab.normpdf函数。您可以使用以下代码替换原来的代码:
y = plt.normpdf(bins, mu, sigma)
2. 如果您使用的是较旧的版本,可以尝试升级matplotlib到最新版本,然后再次运行代码。
阅读全文