嗨,我想摆脱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"))
产生此图像:
我想摆脱围绕我的情节的小灰线。
答案 0 :(得分:0)
尝试将panel.background = element_rect(..., color = NA)
作为theme
中的参数