spatstat (version 1.54-0)

unstack.msr: Separate a Vector Measure into its Scalar Components

Description

Converts a vector-valued measure into a list of scalar-valued measures.

Usage

# S3 method for msr
unstack(x, …)

Arguments

x

A measure (object of class "msr").

Ignored.

Value

A list of measures, of class "solist".

Details

This is a method for the generic unstack for the class "msr" of measures.

If x is a vector-valued measure, then y <- unstack(x) is a list of scalar-valued measures defined by the components of x. The jth entry of the list, y[[j]], is equivalent to the jth component of the vector measure x.

If x is a scalar-valued measure, then the result is a list consisting of one entry, which is x.

See Also

unstack

unstack.ppp

split.msr.

Examples

Run this code
# NOT RUN {
   fit <- ppm(cells ~ x)
   m <- residuals(fit, type="score")
   m
   unstack(m)
# }

Run the code above in your browser using DataCamp Workspace