16

我将带有 ggplot 的图保存为 .png。背景必须是黑色的,但总是有一个小的白色边距(只有顶部,在左边;不是右边)。

我怎样才能删除这个边距?

谢谢!

这是我的代码

library(ggplot2)
require(grid)


dat <- data.frame("xvar"=runif(500, 1, 10), 
              "yvar"=runif(500, 1, 10))

n <- 1
for(i in 1:n){
png(file=paste("green", i, ".png", sep=""), width=400, height=400)
  x <- sample(500, 50)
  i <- ggplot(data=dat[x,], aes(x=xvar, y=yvar))+
geom_point(col="green", size=3,shape=15)+
  theme(panel.background=element_rect(fill="black"), panel.grid.minor=element_blank(),
     panel.grid.major=element_blank(), axis.text.x=element_blank(), axis.text.y=
     element_blank(), axis.title.x=element_blank(), axis.title.y=element_blank(),
    axis.ticks=element_blank(), plot.background=element_rect(fill="black"), 
    panel.margin = unit(c(0,0,0,0), "cm"), plot.margin = unit(c(0,0,0,0), "cm"))+
  scale_x_continuous()
print(i)
dev.off() }

例子

在此处输入图像描述

4

1 回答 1

13

您看到的线条是plot.background矩形元素的默认轮廓颜色。您可以通过在theme()通话中将颜色设置为 NA 来删除它:

theme(plot.background=element_rect(fill="black", colour=NA))
于 2013-05-08T22:52:30.627 回答