ggplot2删除情节

时间:2019-03-06 19:13:59

标签: r ggplot2

嗨,我想摆脱ggplot放在我情节周围的盒子。

这是一些代码

d = data.frame(x=rep(1:5,2), y=gl(2,5), height=abs(rnorm(10)))

ggplot(d, aes(x, y, height = height, group = y)) + 
   geom_ridgeline(fill="black", colour="white") +
   theme(panel.grid = element_blank(), panel.background = element_rect(fill = "#000000"), plot.background = element_rect(fill = "#000000"))

产生此图像:

enter image description here

我想摆脱围绕我的情节的小灰线。

1 个答案:

答案 0 :(得分:0)

尝试将panel.background = element_rect(..., color = NA)作为theme中的参数