我试图摆脱 SpatialPolygons 图的顶部和底部边距。我尝试将边距设置为 c(0,0,0,0) 但这只会改变左右边距。
在 RStudio 中绘图时,上下边距为 0,但左右不是。
library(sp)
coords <- cbind(c(631145, 631757, 631928, 631664, 631579, 631281),
c(6967640, 6967566, 6968027, 6967985, 6968141, 6968009))
poly <- Polygons(list(Polygon(coords)),"coords")
poly.sp <- SpatialPolygons(list(poly))
par(mar = rep(0, 4), xaxs='i', yaxs='i')
plot(poly.sp, bg="yellow")
png('poly.png')
par(mar = rep(0, 4), xaxs='i', yaxs='i')
plot(poly.sp, bg="yellow")
dev.off()