请考虑来自?ggplot2::facet_grid
的以下示例:
p <- ggplot(mpg, aes(displ, cty)) + geom_point()
p + facet_grid(vars(drv), vars(cyl))
我要实现的是在刻面标签的strip
与实际图之间有一个较小的偏移量/空白。结果看起来(没有gimp
参与):
可以使用ggplot2
或其任何派生软件包吗?
谢谢您的见解。
答案 0 :(得分:3)
有一个选项strip.switch.pad.grid
,但仅当您激活switch
参数
library(ggplot2)
theme_set(theme_bw(base_size = 14))
p <- ggplot(mpg, aes(displ, cty)) + geom_point()
p + facet_grid(vars(drv), vars(cyl),
switch = 'y') +
theme(strip.placement = 'outside') +
theme(strip.switch.pad.grid = unit('0.25', "cm"))
由reprex package(v0.2.1)于2019-05-15创建
答案 1 :(得分:3)