
Last chance! 50% off unlimited learning
Sale ends in
"tess"
representing a tessellation
of a spatial region.tess(..., xgrid = NULL, ygrid = NULL, tiles = NULL, image = NULL)
"owin"
). Incompatible with other arguments."tess"
representing the tessellation."tess"
that
represents a tessellation. Three types of tessellation are supported:
[object Object],[object Object],[object Object]
There are methods for print
, plot
, [
and [<-
for tessellations. Use tiles
to extract the list of
tiles in a tessellation.
Tessellations can be used to classify the points of
a point pattern, in split.ppp
, cut.ppp
and
by.ppp
.
plot.tess
,
[.tess
,
as.tess
,
tiles
,
intersect.tess
,
split.ppp
,
cut.ppp
,
by.ppp
,
quadrats
.A <- tess(xgrid=0:4,ygrid=0:4)
A
B <- A[c(1, 2, 5, 7, 9)]
B
v <- as.im(function(x,y){factor(round(5 * (x^2 + y^2)))}, W=owin())
levels(v) <- letters[seq(length(levels(v)))]
E <- tess(image=v)
E
Run the code above in your browser using DataLab