从ggplot2图表中删除右边框

问题描述 投票:0回答:1

使用以下代码,我可以删除顶部和右侧边框以及其他内容。我想知道如何仅删除ggplot2图的右边界。

p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point() 

p + theme_classic()
r plot ggplot2 r-grid
1个回答
4
投票

主题系统阻碍了,但有点扭曲,你可以破解主题元素,

library(ggplot2)
library(grid)
element_grob.element_custom <- function(element, ...)  {

  segmentsGrob(c(1,0,0),
               c(0,0,1),
               c(0,0,1),
               c(0,1,1), gp=gpar(lwd=2))
}
## silly wrapper to fool ggplot2
border_custom <- function(...){
  structure(
    list(...), # this ... information is not used, btw
    class = c("element_custom","element_blank", "element") # inheritance test workaround
  ) 

}
ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point() +
  theme_classic() +
  theme(panel.border=border_custom())
© www.soinside.com 2019 - 2024. All rights reserved.