Y axis won't start at 0 in ggplot

后端 未结 2 1787
清酒与你
清酒与你 2020-12-11 03:15

In this plot I order the ylim to be 0, but the y axis seems to start at -1 anyway, which is very annoying. I really like the y axis to stat at 0. Solutions?

         


        
2条回答
  •  春和景丽
    2020-12-11 04:02

    p + scale_y_continuous(
      limits =   c(0,max_num),
      expand = expansion(mult = c(0,0.05))
    )
    

    this function ( expansion(mult = c(0,0.05))) may help

提交回复
热议问题