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

How to merge plots (layers) in R Studio?

如何合并两个地块(图层)?在第一个图上有带数据的点,在第二个图上有这些点的边界。 这是我得到的:

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

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

你想要的可能是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)