suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Wie kann man die Farbe jedes Zylinders in der Python-Matplotlib-Zeichnung unterschiedlich gestalten?

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

大家讲道理大家讲道理2791 Tage vor696

Antworte allen(1)Ich werde antworten

  • ringa_lee

    ringa_lee2017-05-18 10:52:43

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

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

    Antwort
    0
  • StornierenAntwort