R ggplot:强制facet_grid页边距在下一行

时间:2019-11-17 11:02:00

标签: r ggplot2

    library(ggpointdensity)
    library(viridis)
    ggplot(data = iris, mapping = aes(x = Sepal.Width, y =  Sepal.Length)) +
    geom_pointdensity() +
    scale_color_viridis() + theme_bw() + 
    facet_grid( ~ cut(iris$Sepal.Width,3), margins = F, scales = 'free')

enter image description here

enter image description here

我需要像下一行一样获取要生成的边距(第二个图)。

当前,如果我使用margin = T,则将在同一行上生成余量图,这使得很难看到总体点分布。

0 个答案:

没有答案