不知道大家有木有發(fā)現(xiàn),基礎(chǔ)包畫(huà)箱線圖是這樣的:
boxplot(iris$Sepal.Length~iris$Species)
它是一張有橫線的圖改基。
而用ggplot2作圖時(shí)繁疤,莫得感情,莫得橫線??秕狰。
library(ggplot2)
ggplot(data = iris,aes(x = Species,y = Sepal.Length))+
geom_boxplot( width = 0.3)
能不能把橫線加上嵌洼,能啊,搜封恰。
順便把顏色也加上好了。
ggplot(data = iris,aes(x = Species,y = Sepal.Length,fill = Species))+
stat_boxplot(geom ='errorbar', width = 0.3)+
geom_boxplot( width = 0.3)
參考代碼:https://stats.stackexchange.com/questions/8137/how-to-add-horizontal-lines-to-ggplot2-boxplot