Soy nuevo en Spatstat para R y estoy intentando añadir una capa de puntos a una ventana que he creado a partir de un polígono. Veo que ya se han hecho preguntas como esta pero sigo sin conseguir lo que necesito con las respuestas dadas. Hasta ahora tengo:
##Run libraries:
library(“spatstat”)
library(“maptools”)
library(“sp”)
library(“rgdal”)
##set the working directory
setwd(“Z:/CP/spatstat/data/”)
##read in the shapefiles
Points <- readOGR(getwd(), "MyPointShapefile")
StudyArea <- readOGR(getwd(), "MyPolygonShapefile")
##create the window from polygon shp
w <- as.owin(StudyArea)
¿Cómo se suman los dos para que los puntos se proyecten en la ventana?