AttributeError: module 'matplotlib' has no attribute 'show'
时间: 2023-10-06 15:04:58 浏览: 105
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为Matplotlib版本的问题导致的,解决方法如下:
1. 检查Matplotlib版本是否正确安装,如果没有安装或者版本太低,可以通过升级或者重新安装来解决问题。
2. 在代码中添加以下代码:`import matplotlib.pyplot as plt`,然后使用`plt.show()`代替`matplotlib.show()`。
3. 如果以上方法都不行,可以尝试使用其他的绘图库,比如Seaborn等。
希望这些方法能够帮到你!
阅读全文