欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib 填充颜色

程序员文章站 2022-03-01 22:15:51
...

matplotlib 填充颜色

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
 

coloredgecolor这些都能传array-like的参数
在array里分别指定颜色就好了
例子:

x=np.arange(10)
y=np.arange(10)
plt.bar(x,y,color=['red','green'])

posted on 2017-06-13 16:41 多一点 阅读(...) 评论(...) 编辑 收藏