文章详情页
python matplotlib绘图怎么让每个柱面颜色不一样?
浏览:53日期:2022-07-18 15:54:19
问题描述
def huitu_host(nodes,total): x = np.arange(len(nodes)) plt.figure(figsize=(9,5)) plt.xticks(x,nodes) plt.bar(x,total,width = 0.5,facecolor = ’yellowgreen’,edgecolor = ’white’) for x,y in zip(x,total):plt.text(x,y,’%.f’ % y,ha='center', va='bottom') plt.show() return
问题解答
回答1:color和edgecolor这些都能传array-like的参数在array里分别指定颜色就好了例子:
x=np.arange(10)y=np.arange(10)plt.bar(x,y,color=[’red’,’green’])
相关文章:
1. index.php错误,求指点2. javascript - ajax请求不返回,关闭页面时才返回。。。3. html5 - 百度Ueditor代码高亮和代码段滚动条冲突是怎么回事?4. 关于mysql unique的问题,如图所示5. mysql怎么保存一件游戏装备,一般游戏开发是否用mysql6. vim - win10无法打开markdown编辑器7. 如何提高python查询速度?8. c++ - pycharm 4.5 的 python -> preferences 找不到9. showpassword里的this 是什么意思?代表哪个元素10. javascript - 可以DIY的页面是如何实现的?
排行榜