FWIW,我以下列方式使用Boxplot命令,其中’f1’是一个因素:
Boxplot(xvar ~ f1,data=frame,xlab="input values",horizontal=TRUE)
首先,fun.data的一个简单的功能
give.n <- function(x){ return(c(y = mean(x),label = length(x))) }
现在,用钻石资料展示
ggplot(diamonds,aes(cut,price)) + geom_Boxplot() + stat_summary(fun.data = give.n,geom = "text")
您可能必须使用文字大小来使其看起来不错,但是现在您有一个样本大小的标签,这也给出了偏差的感觉.