从ggplot2图表中删除右边框

时间:2014-12-27 12:00:47

标签: r plot ggplot2 r-grid

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

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

p + theme_classic()

2 个答案:

答案 0 :(得分: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())

答案 1 :(得分:1)

您可以删除两个边框(使用theme_classic()首先删除边框),然后使用annotate()添加一个边框:

p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
p + theme_classic() + annotate(
    geom = 'segment',
    y = Inf,
    yend = Inf,
    x = -Inf,
    xend = Inf
)

the resulting image

(这个想法来自:How to add line at top panel border of ggplot2


顺便说一句,您当然不需要使用theme_classic()。如果您使用具有不同默认边框的主题,则可以使用theme()函数的参数panel.border(设置所有边框)和axis.line(设置单独的轴“边框”)来打开/关闭它们。 )。

例如(用于默认主题):

p <- ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
p + annotate(
    geom = 'segment',
    y = Inf,
    yend = Inf,
    x = -Inf,
    xend = Inf
) + theme(panel.border = element_blank(), axis.line = element_line())

the resulting image 2