spatstat (version 1.31-2)

is.hybrid: Test Whether Object is a Hybrid

Description

Tests where a point process model or point process interaction is a hybrid of several interactions.

Usage

is.hybrid(x)

## S3 method for class 'ppm': is.hybrid(x)

## S3 method for class 'interact': is.hybrid(x)

Arguments

x
A point process model (object of class "ppm") or a point process interaction structure (object of class "interact").

Value

  • TRUE if the object is a hybrid, and FALSE otherwise.

Details

A hybrid (Baddeley, Turner, Mateu and Bevan, 2012) is a point process model created by combining two or more point process models, or an interpoint interaction created by combining two or more interpoint interactions. The function is.hybrid is generic, with methods for point process models (objects of class "ppm") and point process interactions (objects of class "interact"). These functions return TRUE if the object x is a hybrid, and FALSE if it is not a hybrid.

Hybrids of two or more interpoint interactions are created by the function Hybrid. Such a hybrid interaction can then be fitted to point pattern data using ppm.

References

Baddeley, A., Turner, R., Mateu, J. and Bevan, A. (2012) Hybrids of Gibbs point process models and their implementation. Submitted for publication.

See Also

Hybrid

Examples

Run this code
S <- Strauss(0.1)
  is.hybrid(S)
  H <- Hybrid(Strauss(0.1), Geyer(0.2, 3))
  is.hybrid(H)

  data(redwood)
  fit <- ppm(redwood, ~1, H)
  is.hybrid(fit)

Run the code above in your browser using DataCamp Workspace