library(ggplot2) box <- ggplot(data=iris, aes(x=Species, y=Sepal.Length)) box + geom_boxplot(aes(fill=Species)) + ylab("Sepal Length") + ...
確定! 回上一頁