引入Python绘图模块Matplotlibimport
使用了: matplotlib as plt
引用了模块。
使用过程中调用 fig = plt.figure()
,
报错显示:AttributeError: module ‘matplotlib’ has no attribute 'figure’
解决办法
使用import matplotlib.pyplot as plt
引用模块,错误解决
标签:plt,figure,no,attribute,matplotlib,报错,模块
来源: https://www.cnblogs.com/kingwz/p/16217611.html