我正在使用 ggplot 创建箱线图,并希望表示对每个框有贡献的样本量。在基本plot
功能中有varwidth
选项。它在ggplot中有等价物吗?
例如,在基图中
data <- data.frame(rbind(cbind(rnorm(700, 0,10), rep("1",700)),
cbind(rnorm(50, 0,10), rep("2",50))))
data[ ,1] <- as.numeric(as.character(data[,1]))
plot(data[,1] ~ as.factor(data[,2]), varwidth = TRUE)