我正在尝试创建一种ggplot2
样式,其中title
,subtitle
和axis.text.y
在图上不在y上都与0边距对齐轴。
然后我想在axis.text.y
和panel.grid
之间留出不同的边距,例如64px。
这可以在theme()
函数中完成吗?
library(ggplot2)
library(magrittr)
iris %>%
ggplot(aes(Sepal.Length, Sepal.Width,
color = Species)) +
geom_point() +
theme_minimal() +
theme(legend.position = 0) +
labs(title = "The Sepal.Width vs. Sepeal.Length",
subtitle = "The iris dataset",
y = "")
所需结果: