heroking146 发表于 2020-9-13 21:19:29

怪了我的执行不出横的直方图效果呢。显示TypeError: barh() missing 1 required po...

import numpy as np
import matplotlib.pyplot as plt
N=5
y=【20,10,30,25,15】
index=np.arange(N)
# pl=plt.bar(left=0,bottom=index,width=y,color='red',height=0.5,orietation='horizontal')
pl=plt.barh(left=0,bottom=index,width=y)
plt.show()

怪了,我的执行不出来TypeError: barh() missing 1 required positional argument: 'y'   用pycharm

疾风怪盗 发表于 2020-9-13 21:23:56

这个才是完整的代码


import numpy as np
import matplotlib.pyplot as plt
N=5
y=
index=np.arange(N)
# pl=plt.bar(left=0,bottom=index,width=y,color='red',height=0.5,orietation='horizontal')
pl=plt.bar(0,bottom=index,width=y,height=0.5,orientation='horizontal')
plt.show()

疾风怪盗 发表于 2020-9-13 21:27:06

pl=plt.barh(index,width=y,height=0.8)
或者这样,你要看参数有哪些啊,pycharm里输入barh等一下,会跳出参数提示的

sunrise085 发表于 2020-9-13 21:27:13

bottom改成y即可,这里的y不是你定义的列表y,而是barh的关键字参数y
import numpy as np
import matplotlib.pyplot as plt
N=5
y=
index=np.arange(N)
# pl=plt.bar(left=0,bottom=index,width=y,color='red',height=0.5,orietation='horizontal')
pl=plt.barh(left=0,y=index,width=y)
plt.show()

heroking146 发表于 2020-9-13 21:39:54

谢谢了。

heroking146 发表于 2020-9-13 22:03:13

sunrise085 发表于 2020-9-13 21:27
bottom改成y即可,这里的y不是你定义的列表y,而是barh的关键字参数y

import numpy as np
import matplotlib.pyplot as plt
N=5
y=
index=np.arange(N)
pl=plt.bar(left=0,bottom=index,width=y,color='red',height=0.5,orietation='horizontal')
那这段代码怎么修改可以改成直方图??有的视频是这么写的,可是我的pycharm执行错误??
#pl=plt.barh(left=0,y=index,width=y)
plt.show()
页: [1]
查看完整版本: 怪了我的执行不出横的直方图效果呢。显示TypeError: barh() missing 1 required po...