Learn R Programming

spatstat.model (version 3.3-5)

parameters: Extract Model Parameters in Understandable Form

Description

Given a fitted model of some kind, this function extracts all the parameters needed to specify the model, and returns them as a list.

Usage

parameters(model, ...)

# S3 method for dppm parameters(model, ...)

# S3 method for kppm parameters(model, ...)

# S3 method for slrm parameters(model, ...)

# S3 method for ppm parameters(model, ...)

# S3 method for profilepl parameters(model, ...)

# S3 method for fii parameters(model, ...)

# S3 method for interact parameters(model, ...)

Value

A named list, whose format depends on the fitted model.

Arguments

model

A fitted model of some kind.

...

Arguments passed to methods.

Author

Adrian Baddeley Adrian.Baddeley@curtin.edu.au, Rolf Turner rolfturner@posteo.net and Ege Rubak rubak@math.aau.dk

Details

The argument model should be a fitted model of some kind. This function extracts all the parameters that would be needed to specify the model, and returns them as a list.

The function parameters is generic, with methods for class "ppm", "kppm", "dppm" and "profilepl" and other classes.

See Also

Examples

Run this code
  parameters(Strauss(0.1))
  fit1 <- ppm(cells ~ x, Strauss(0.1))
  parameters(fit1)
  fit2 <- kppm(redwood ~ x, "Thomas")
  parameters(fit2)

Run the code above in your browser using DataLab