Normalizing y-axis in histograms in R ggplot to proportion

后端 未结 4 972
轮回少年
轮回少年 2020-11-29 17:23

I have a very simple question causing me to bang my head on the wall.

I would like to scale the y-axis of my histogram to reflect the proportion (0 to 1) that each b

4条回答
  •  一向
    一向 (楼主)
    2020-11-29 18:12

    Note that ..ncount.. rescales to a maximum of 1.0, while ..count.. is the non scaled bin count.

    ggplot(mydataframe, aes(x=value)) +
      geom_histogram(aes(y=..count../sum(..count..)))
    

    Which gives:

    enter image description here

提交回复
热议问题