spatstat (version 1.48-0)

fitted.lppm: Fitted Intensity for Point Process on Linear Network

Description

Given a point process model fitted to a point pattern on a linear network, compute the fitted intensity of the model at the points of the pattern, or at the points of the quadrature scheme used to fit the model.

Usage

"fitted"(object, ..., dataonly = FALSE, new.coef = NULL)

Arguments

object
Fitted point process model on a linear network (object of class "lppm").
...
Ignored.
dataonly
Logical value indicating whether to computed fitted intensities at the points of the original point pattern dataset (dataonly=TRUE) or at all the quadrature points of the quadrature scheme used to fit the model (dataonly=FALSE, the default).
new.coef
Numeric vector of parameter values to replace the fitted model parameters coef(object).

Value

A vector containing the values of the fitted spatial trend.Entries in this vector correspond to the quadrature points (data or dummy points) used to fit the model. The quadrature points can be extracted from object by union.quad(quad.ppm(object)).

Details

This is a method for the generic function fitted for the class "lppm" of fitted point process models on a linear network. The locations $u$ at which the fitted conditional intensity/trend is evaluated, are the points of the quadrature scheme used to fit the model in ppm. They include the data points (the points of the original point pattern dataset x) and other ``dummy'' points in the window of observation.

See Also

lppm, predict.lppm

Examples

Run this code
   fit <- lppm(spiders~x+y)
   a <- fitted(fit)
   b <- fitted(fit, dataonly=TRUE)

Run the code above in your browser using DataCamp Workspace