Python教程

【Python-BUG】module ‘matplotlib‘ has no attribute ‘plot‘

本文主要是介绍【Python-BUG】module ‘matplotlib‘ has no attribute ‘plot‘,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

问题所在

import matplotlib.pyplot as plt
#很容易漏掉pyplot ,直接写成 import matplotlib as plt导致错误

错误写法

import numpy as np
import matplotlib as plt
# 随机漫步
position=0
walk=[position]
steps=1000
for i in range(steps):
    step= 1 if np.random.randint(0,2) else -1
    position+=step
    walk.append(position)
plt.plot(walk)

正确写法

import numpy as np
import matplotlib.pyplot as plt
# 随机漫步
position=0
walk=[position]
steps=1000
for i in range(steps):
    step= 1 if np.random.randint(0,2) else -1
    position+=step
    walk.append(position)
plt.plot(walk)
这篇关于【Python-BUG】module ‘matplotlib‘ has no attribute ‘plot‘的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!