以前は、下部のひげ、下部の分位数、中央値、上部の分位数、上部のひげをx軸ラベルとともに提供することで、ggplot2を使用して箱ひげ図を作成することができました。例えば:
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()
2セットのデータ(AとB)の箱ひげ図を作成します。これはもううまくいきません。次のエラーが発生します。
Error: Aesthetics must either be length one, or the same length as the dataProblems:x
ggplot2で何かが変更されたかどうか誰かが知っていますか?