将颜色添加到组显示的直方图

时间:2015-07-30 19:04:19

标签: python pandas matplotlib

有一个question I asked yesterday,这是一个更具体的后续问题:

df是一个days, data, binary列的数据框。有100天。我希望查看data列的直方图,其中binary按颜色显示的每100天(例如红色为0且蓝色是1)。 我该怎么做?

细微添加是添加binary列。

当前代码看起来像(这是在IPython Notebook中):

n_groups = lambda x: len(grouper.groups[x])
for days in grouper.groups.keys():
    current_num_groups = n_groups(days)
    grouper.get_group(days).hist()
    plt.suptitle("Days: {}".format(days))
    plt.xlabel('Data, Count: {}'.format(current_num_groups))
    plt.show()

0 个答案:

没有答案