Extract Design Matrix from Point Process Model
Given a point process model that has been fitted to spatial point pattern data, this function extracts the design matrix of the model.
## S3 method for class 'ppm' model.matrix(object, data=model.frame(object, na.action=NULL), ..., Q=NULL, keepNA=TRUE) ## S3 method for class 'kppm' model.matrix(object, data=model.frame(object, na.action=NULL), ..., Q=NULL, keepNA=TRUE) ## S3 method for class 'dppm' model.matrix(object, data=model.frame(object, na.action=NULL), ..., Q=NULL, keepNA=TRUE) ## S3 method for class 'ippm' model.matrix(object, data=model.frame(object, na.action=NULL), ..., Q=NULL, keepNA=TRUE, irregular=FALSE)
object |
The fitted point process model. An object of class |
data |
A model frame, containing the data required for the Berman-Turner device. |
Q |
A point pattern (class |
keepNA |
Logical. Determines whether rows containing NA values will be deleted or retained. |
... |
Other arguments (such as |
irregular |
Logical value indicating whether to include the irregular score components. |
These commands are methods for the generic function
model.matrix
.
They extract the design matrix of a spatial point process model
(class "ppm"
or "kppm"
or "dppm"
).
More precisely, this command extracts the design matrix of the generalised linear model associated with a spatial point process model.
The methods model.matrix.ppm
,
model.matrix.kppm
,
and model.matrix.dppm
extract the model matrix for the GLM.
The result is a matrix, with one row for every quadrature point in the fitting procedure, and one column for every constructed covariate in the design matrix.
If there are NA
values in the covariates,
the argument keepNA
determines whether to retain or delete
the corresponding rows of the model matrix. The default
keepNA=TRUE
is to retain them. Note that this differs from
the default behaviour of many other methods for model.matrix
,
which typically delete rows containing NA
.
The quadrature points themselves can be extracted using
quad.ppm
.
A matrix. Columns of the matrix are canonical covariates in the model.
Rows of the matrix correspond to quadrature points
in the fitting procedure (provided keepNA=TRUE
).
Adrian Baddeley Adrian.Baddeley@curtin.edu.au, Rolf Turner r.turner@auckland.ac.nz and Ege Rubak rubak@math.aau.dk.
fit <- ppm(cells ~ x) head(model.matrix(fit)) model.matrix(fit, Q=runifpoint(5)) kfit <- kppm(redwood ~ x, "Thomas") m <- model.matrix(kfit)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.