spatstat (version 1.53-2)

methods.ssf: Methods for Spatially Sampled Functions

Description

Methods for various generic commands, for the class "ssf" of spatially sampled functions.

Usage

# S3 method for ssf
marks(x, …)

# S3 method for ssf marks(x, …) <- value

# S3 method for ssf unmark(X)

# S3 method for ssf as.im(X, …)

# S3 method for ssf as.function(x, …)

# S3 method for ssf as.ppp(X, …)

# S3 method for ssf print(x, …, brief=FALSE)

# S3 method for ssf range(x, …)

# S3 method for ssf min(x, …)

# S3 method for ssf max(x, …)

# S3 method for ssf integral(f, domain=NULL, ..., weights=attr(f, "weights"))

Arguments

x,X,f

A spatially sampled function (object of class "ssf").

Arguments passed to the default method.

brief

Logical value controlling the amount of detail printed.

value

Matrix of replacement values for the function.

domain

Optional. Domain of integration. An object of class"owin".

weights

Optional. Numeric vector of weights associated with the sample points.

Value

marks returns a matrix.

marks(x) <- value returns an object of class "ssf".

as.owin returns a window (object of class "owin").

as.ppp and unmark return a point pattern (object of class "ppp").

as.function returns a function(x,y) of class "funxy".

print returns NULL.

range returns a numeric vector of length 2. min and max return a single numeric value.

integral returns a numeric value (if x had numeric values) or a numeric vector (if x had vector values).

Details

An object of class "ssf" represents a function (real- or vector-valued) that has been sampled at a finite set of points.

The commands documented here are methods for this class, for the generic commands marks, marks<-, unmark, as.im, as.function, as.ppp, print, range, min, max and integral.

See Also

ssf

Examples

Run this code
# NOT RUN {
  X <- cells[1:4]
  f <- ssf(X, nndist(X, k=1:3))
  f
  marks(f)
  as.ppp(f)
  as.im(f)
# }

Run the code above in your browser using DataCamp Workspace