美文网首页
Matplotlib引入报错解决办法

Matplotlib引入报错解决办法

作者: LabRat | 来源:发表于2017-12-01 15:53 被阅读0次

    在深度学习数据可视化过程中,引入了Python绘图模块Matplotlib

    import matplotlib as plt

    使用过程中调用 fig  = plt.figure(),报错显示:

    AttributeError: module 'matplotlib' has no attribute 'figure'

    通过stackoveflow上的解决办法修改为:

    import matplotlib.pyplot as plt,错误解决

    原文地址:

    https://stackoverflow.com/questions/45150238/error-with-matplotlib-show-module-matplotlib-has-no-attribute-show

    相关文章

      网友评论

          本文标题:Matplotlib引入报错解决办法

          本文链接:https://www.haomeiwen.com/subject/oqefvxtx.html