summary {PtProcess} | R Documentation |
Summary of a Point Process Model
Description
Provides methods for the generic function summary
.
Usage
## S3 method for class 'mpp'
summary(object, ...)
## S3 method for class 'linksrm'
summary(object, ...)
Arguments
object |
|
... |
other arguments. |
Value
A list object with a reduced number of components, mainly the parameter values.
Examples
TT <- c(0, 1000)
bvalue <- 1
params <- c(-2.5, 0.01, 0.8, bvalue*log(10))
x <- mpp(data=NULL,
gif=srm_gif,
marks=list(NULL, rexp_mark),
params=params,
gmap=expression(params[1:3]),
mmap=expression(params[4]),
TT=TT)
x <- simulate(x, seed=5)
print(summary(x))
[Package PtProcess version 3.3-16 Index]