发生异常: AttributeError Rectangle.set() got an unexpected keyword argument 'normed' File "E:\AIMath\Sy-3.1.py", line 39, in <module> plt.hist(sample, bins=80, alpha=0.7, normed=True) # 绘制直方图 AttributeError: Rectangle.set() got an unexpected keyword argument 'normed'
时间: 2023-05-28 18:03:06 浏览: 359
这是一个异常错误,错误信息为:AttributeError Rectangle.set() got an unexpected keyword argument 'normed'。错误发生在文件路径为E:\AIMath\Sy-3.1.py的第39行,即在调用plt.hist()函数时传入了一个不被识别的关键字参数normed=True。
相关问题
AttributeError: Rectangle.set() got an unexpected keyword argument 'normed'
这个错误可能是因为您使用的是过时的版本的Matplotlib。在较新的版本中,`set()`函数不再接受`normed`参数。您可以尝试更新Matplotlib版本或者在代码中使用`set_norm()`函数代替`set()`函数中的`normed`参数。另外,如果您能提供更多的代码和上下文信息,我可以更好地帮助您解决问题。
阅读全文