通过以下代码,得到下图library(ggplot2)ggplot(singer, aes(x=voice.part, y=height)) + geom_boxplot(fill=rainbow(8), color="black", notch=TRUE) + labs(title="箱线图:按声部分类", color = "red")我试了参数 horizontal=TRUE,但不行,怎么将它水平放置?