"ppp"
)
for use by the spatstat
package).as.ppp(X)
as.ppp(X, W)
as.ppp(X, fatal=TRUE)
"ppp"
(see ppp.object
)
describing the point pattern and its window of observation.
The value NULL
may also be returned; see Details.spp
objects
is changed in future versions of the spatial
library,
then as.ppp
may not be able to interpret them.
It currently handles all versions of spatial
up to 7.1-4.X
to a point pattern
(an object of class "ppp"
; see ppp.object
for
an overview). The optional argument W
is a default window for the
pattern; it is used only if a window is not specified in X
. The data X
may be:
"ppp"
"spp"
as defined in thespatial
library"quad"
representing a quadrature scheme
(seequad.object
)x
,y
W
which is converted to a window object
by the function as.owin
.
In the first three cases, W
will be ignored. The argument fatal
indicates what to do when
W
is missing and X
contains no
information about the window. If fatal=TRUE
, a fatal error
will be generated; if fatal=FALSE
, the
value NULL
is returned.
An spp
object is the representation of a point pattern
in the spatial
library. Our implementation recognises
the following formats:
x
,y
xl
,xu
,yl
,yu
x
,y
andarea
,
wherearea
is a structure with entriesxl
,xu
,yl
,yu
spatial
versions 1 to 6 and version 7.1 respectively)
where x
and y
are vectors of equal length
giving the point coordinates, and xl
, xu
, yl
,
yu
are numbers giving the dimensions of a rectangular window. Point pattern datasets can also be created by the function
ppp
.
ppp
,
ppp.object
,
as.owin
,
owin.object
library(spatstat)
plot(c(0,1),c(0,1),type="n")
xy <- locator(20) # click on 20 points in plot window
pp <- as.ppp(xy, c(0,1,0,1))
w <- owin(c(0,1),c(0,1))
plot(w) # neater
xy <- locator(20) # click on 20 points in plot window
pp <- as.ppp(xy, w)
xy <- matrix(runif(40), ncol=2)
pp <- as.ppp(xy, c(0,1,0,1))
# Venables-Ripley format
sp <- list(x=runif(10), y=runif(10), xl=0, xu=1, yl=0, yu=1)
pp <- as.ppp(sp) # converted to our format
Run the code above in your browser using DataLab