在过去,我已经能够使用 ggplot2 创建箱线图,方法是提供下须线、下分位数、中位数、上分位数和上须线以及 x 轴标签。例如:
DF <- data.frame(x=c("A","B"), min=c(1,2), low=c(2,3), mid=c(3,4), top=c(4,5), max=c(5,6))
ggplot(DF, aes(x=x, y=c(min,low,mid,top,max))) +
geom_boxplot()
将为两组数据(A 和 B)制作箱线图。这不再适用于我。我收到以下错误:
Error: Aesthetics must either be length one, or the same length as the dataProblems:x
有谁知道ggplot2中是否发生了一些变化?