熊猫直方图桶和频率

时间:2019-05-05 19:32:39

标签: python pandas

我有下面的直方图,我想用大熊猫绘制

enter image description here

但是使用时会给我以下内容

dataset.hist(column='frequency')

enter image description here

如何将以上内容转换为直方图?

每个@somiandras回答的情节如下:

enter image description here

1 个答案:

答案 0 :(得分:3)

您当前的图直方图,显示frequency列中值的频率。

由于您已经预先计算了直方图的值,因此不需要hist,只需使用(range_fromrange_to)索引数据框并绘制在条形图上情节:

dataset.set_index(['range_from', 'range_to'])['frequency'].plot.bar()