我正在尝试创建一个显示变量的所有因素以及样本大小的箱线图,并且在图的末尾还需要一个将所有值组合为一个的整体箱线图。除了制作整体情节外,我正在使用以下代码行来做所有事情:
library(ggplot2)
library(plyr)
xlabels <- ddply(extract8, .(Fuel), summarize, xlabels = paste(unique(Fuel), '\n(n = ', length(Fuel),')'))
ggplot(extract8, aes(x = Fuel, y = Exfiltration.Fraction.Percentage))+geom_boxplot()+
stat_boxplot(geom='errorbar', linetype=1) +
geom_boxplot(fill="pink") + geom_hline(yintercept = 0.4) +
scale_x_discrete(labels = xlabels[['xlabels']]) + ggtitle("Exfiltration Fraction (%) by Fuel Type")
不确定如何继续添加将所有因素合二为一的箱线图。