Learn R Programming

PtProcess (version 3.3-7)

summary: 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
an object with class "mpp" or "linksrm".
...
other arguments.

Value

  • A list object with a reduced number of components, mainly the parameter values.

Examples

Run this code
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))

Run the code above in your browser using DataLab