ggplot2 中的许多主题元素仅具有 .x 或 .y 扩展名,以仅在一个轴上删除/更改某些内容。 strip.background
没有strip.background.x
等价物,如下所示。
如何strip.background
仅在一个轴上删除文本和分面标签?
a <- ggplot(mtcars, aes(mpg, hp)) +
geom_point() +
facet_grid(cyl~gear)
a + theme(strip.text.y = element_blank(),
strip.background.x = element_blank())
## > a + theme(strip.text.y = element_blank(), strip.background.x = element_blank())
## Error in (function (el, elname) :
## "strip.background.x" is not a valid theme element name.