Python组条形图问题

时间:2018-08-31 16:22:02

标签: python python-3.x matplotlib

我试图创建组条形图,该条形图可以同时比较“时间”及其“平均值”。数据如下: enter image description here

    fig, ax = plt.subplots()
    bar_width = 0.35
    ind=np.arange(0, len(app_groups['TIME']))
    p1=ax.bar(ind+bar_width,app_groups['TIME'],bar_width)
    p2=ax.bar(ind+bar_width,app_groups['Mean'],bar_width)
    ax.legend((p1[0], p2[0]), ('TIME', 'MEAN'))
    plt.show()

但是,我刚得到堆积式Bart图表,这不是我想要的。 enter image description here

0 个答案:

没有答案