用另一列作为频率绘制列的直方图

时间:2015-09-11 20:58:29

标签: r

我有一个数据框

> df 
     City    Customerid     Count
  Berlin     12546         25
  Boston     21456         29
  London     23163         36
  Berlin     12546         57
  Boston     21462         49
  London     23565         76
  Berlin     12546         45
  Boston     51426         89
  London     23159         76

我想在X轴上创建一个城市的情节,每个城市的数量总和作为频率。计数总和应出现在相应城市的直方图的每个条形图上方。

1 个答案:

答案 0 :(得分:0)

你可能想要这样的东西:




  p<  -  barplot(df $ Count,names.arg = df $ City,ylim = c( 0,100))
 text(x = p,y = df $ Count,label = df $ Count,pos = 3,cex = 0.8)
  
&#xA ;