Default plot library(ggplot2) p <- ggplot(ToothGrowth, aes(x = factor(dose), y = len)) + geom_boxplot() print(p) # Add titles p <- p + labs(title = "Effect ...
確定! 回上一頁