如何删除我的.png周围的奇怪白边(用r,ggplot绘制)?

时间:2013-05-08 13:13:44

标签: r plot ggplot2 png margin

我用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() }

Example

enter image description here

1 个答案:

答案 0 :(得分:10)

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

theme(plot.background=element_rect(fill="black", colour=NA))