如何在使用element_blank
的ggplot2对象中以相同的字体添加x轴标签“ New x-lab”? xlab
和labs
似乎无效。
library(ggplot2)
iris_p <- ggplot(iris, aes(x = Sepal.Width, y = Sepal.Length, col = Species)) +
geom_point() +
theme(axis.title = element_blank(),
text = element_text(family = 'Times'))
编辑:
我完全知道我可以更改原始代码。我想在不更改代码第一部分的情况下向对象iris_p添加一个实验室。