具有共同传说的ggarrange在降价时产生额外的空白情节

时间:2018-01-06 22:52:54

标签: r ggplot2 r-markdown rnotebook ggpubr

我正在使用R笔记本,并且有一些块用于排列直方图的代码。当我使用一个常见的图例时,它会产生一个额外的空图,在渲染的html文件中看起来很糟糕。这种现象在没有共享传说的情况下消失,但情节看起来很糟糕,因为它们的大小不同。有没有办法阻止它产生额外的空图?

Notebook chunk output

和块中使用的代码

 ```{r}

ggarrange(

gghistogram(data, title="MOTIVATION SCORES", x="MOTIVATION", y="..density..", 
add_density=TRUE, add = "median", rug = TRUE, bins=15, color="#69c8ECFF", 
fill="#69c8ECFF") , 


gghistogram(data, title="MOTIVATION BY AGE GROUP", x = "MOTIVATION", 
y="..density..", add_density=TRUE,
          add = "median", rug = TRUE, bins=15,
          color = "AGE_GROUP", fill = "AGE_GROUP",
          palette = c("#69c8ECFF", "#E762D7FF")
          )

, legend = "bottom" 
, common.legend = TRUE

)
```

2 个答案:

答案 0 :(得分:0)

编辑:如果在rmarkdown文档中将下面的第二个块作为代码块运行,它仍然会生成额外的空白图。如果您手动运行第二个块的每一行(即一次运行一次),它将仅生成单个所需的图。我认为这仍然可以作为解决方案,因为即使一次运行一个代码块也会导致额外的空白图。

在rnotebook中运行时,这似乎可以重现该问题:

p1 = ggplot(mtcars, aes(x = mpg, y = cyl)) +
    geom_point()
p2 = ggplot(mtcars, aes(x = drat, y = vs)) +
    geom_point()
ggarrange(p1, p2, ncol = 2, nrow = 1, common.legend = TRUE, legend = "bottom", labels = c("A", "B", "C"))

如果相反,我将ggarrange对象分配给p,则问题消失了:

p1 = ggplot(mtcars, aes(x = mpg, y = cyl)) +
    geom_point()
p2 = ggplot(mtcars, aes(x = drat, y = vs)) +
    geom_point()
p = ggarrange(p1, p2, ncol = 2, nrow = 1, common.legend = TRUE, legend = "bottom", labels = c("A", "B", "C"))
p

不知道为什么。对我来说非常不满意,但是它似乎有效。

答案 1 :(得分:0)

您可以考虑切换到 patchwork 而不是 ggarrange。它没有“白页”问题,而且语法很好。

library(ggplot2)
library(patchwork)

p1 <- ggplot(mtcars, aes(x=mpg,y=disp)) + geom_point() + ggtitle("plotA")
p2 <- ggplot(mtcars, aes(x=mpg,y=qsec)) + geom_point() + ggtitle("plotB")
p3 <- ggplot(mtcars, aes(x="cars", y=hp)) + geom_boxplot() + ggtitle("plotC")

#/ Lets make P1 and P2 share a column, and give P3 its own column:
p1 / p2 | p3

enter image description here