R : confidence interval being partially displayed with ggplot2 (using geom_smooth())

前端 未结 2 733
旧时难觅i
旧时难觅i 2021-01-19 10:27

I have the following simple R code:

disciplines <- c(\"A\",\"C\",\"B\",\"D\",\"E\")
# To stop ggplot from imposing alphabetical ordering on x-axis
discipl         


        
2条回答
  •  盖世英雄少女心
    2021-01-19 11:09

    A better documented, and perhaps more intuitive, solution would be to simply use coord_cartesian:

    ggplot(df.m, aes(group=1,disciplines,value,colour=variable,shape=variable)) +
             geom_point() +
             geom_smooth(stat="smooth", method=loess, level=0.95) +
             scale_x_discrete(name="Disciplines") +
             coord_cartesian(ylim = c(-1,1))
    

提交回复
热议问题