"predict"(object, ..., type = "trend", locations = NULL, new.coef=NULL)
"lppm"
,
see lppm
.
"trend"
,
"cif"
or "se"
.
coef(object)
when calculating
the prediction.
as.mask
to determine the
pixel resolution (if locations
is missing).
"linim"
which inherits
class "im"
) or
a numeric vector, depending on the argument locations
.
See Details.
predict
for the class "lppm"
. The argument object
should be an object of class "lppm"
(produced by lppm
) representing a point process model
on a linear network.
Predicted values are computed at the locations given by the
argument locations
. If this argument is missing,
then predicted values are computed at a fine grid of points
on the linear network.
locations
is missing or NULL
(the default),
the return value is a pixel image (object of class "linim"
which inherits class "im"
)
corresponding to a discretisation
of the linear network, with numeric pixel values giving the
predicted values at each location on the linear network.
locations
is a data frame, the result is a
numeric vector of predicted values at the locations specified by
the data frame.
locations
is a binary mask, the result is a pixel image
with predicted values computed at the pixels of the mask.
McSwiggan, G., Nair, M.G. and Baddeley, A. (2012) Fitting Poisson point process models to events on a linear network. Manuscript in preparation.
lpp
,
linim
X <- runiflpp(12, simplenet)
fit <- lppm(X ~ x)
v <- predict(fit, type="trend")
plot(v)
Run the code above in your browser using DataLab