如何合并R Studio中的图(图层)?

时间:2016-12-27 17:17:23

标签: r geostatistics

如何合并两个图(图层)?在第一个图上有数据点,第二个点有这些点的边界。 这就是我所拥有的:

data <- read.csv('data.csv')
coordinates(data) <- ~x+y 
proj4string(data) <- '+init=epsg:2180' 
plot(data)
boundary <- readOGR(dsn='.', layer='boundary')
plot(boundary)

问题是,我想将边界与数据合并。我也想改变边界的颜色。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

您想要的是polygon

#Example Data
set.seed(42)
mydata = cbind(rnorm(100),rnorm(100))
boundary = mydata[chull(mydata),]

#Plot points first
plot(mydata,xlab="X-axis",ylab="Y-axis")
#Then plot the boundary
polygon(boundary,lty = 2)