R语言ggplot2 title设置(main, axis 和 legend titles)
1. ggplot2中添加title函数
ggtitle(label) # for the main title,主题目
xlab(label) # for the x axis label, xlab
ylab(label) # for the y axis label, ylab
labs(...) # for the main title, axis labels and legend titles,可以同时设定多个lab和tittle
2. 实际应用
(1)添加title、xlab和ylab
ToothGrowth$dose <- as.factor(ToothGrowth$dose)
library(ggplot2)
p <- ggplot(ToothGrowth, aes(x=dose, y=len)) + geom_boxplot()
## 方法1:
p + ggtitle("Plot of length \n by dose") +
xlab("Dos