Information criteria for selecting the intensity function model of a Poisson, cluster or Cox point process.
ic(object) # S3 method for ppm
ic(object)
# S3 method for kppm
ic(object)
A list with entries loglike
, cbic
, cic
and
df
.
Here loglike
is the fitted log first-order composite likelihood,
cbic
is composite Bayesian information criterion,
cic
is is the composite likelihood criterion and
df
is the adjusted degrees of freedom for the
fitted intensity function model.
Fitted point process model
(object of class "ppm"
or "kppm"
).
Achmad Choiruddin, Jean-Francois Coeurjolly and Rasmus Waagepetersen.
This function returns information criteria for selecting the intensity function model of a Poisson, Cox or cluster point process fitted by first order composite likelihood (i.e. using the Poisson likelihood function).
Degrees of freedom
The composite Bayesian information criterion (cbic) is
The composite information criterion (cic) is
NOTE: the information criteria are for selecting the intensity function model (a set of covariates) within a given model class. They cannot be used to choose among different types of cluster or Cox point process models (e.g. can not be used to choose between Thomas and LGCP models).
Choiruddin, A., Coeurjolly, J.F. and Waagepetersen, R. (2020) Information criteria for inhomogeneous spatial point processes. Australian and New Zealand Journal of Statistics. To appear.
kppm
if(interactive()) {
# model with one covariate
fit1 <- kppm(bei~elev,data=bei.extra)
ic1 <- ic(fit1)
# model with two covariates
fit2 <- kppm(bei~elev+grad,data=bei.extra)
ic2 <- ic(fit2)
# smallest cbic for fit1 but smallest cic for fit2
}
Run the code above in your browser using DataLab