spatstat (version 1.14-6)

subset.fv: Extract Subset of Function Values

Description

Extract a subset of an object of class "fv".

Usage

## S3 method for class 'fv':
[(x, i, j, \dots, drop=FALSE)

Arguments

x
a function value object, of class "fv" (see fv.object). Essentially a data frame.
i
any appropriate subset index. Selects a subset of the rows of the data frame, i.e. a subset of the domain of the function(s) represented by x.
j
any appropriate subset index for the columns of the data frame. Selects some of the functions present in x.
drop, ...
Ignored.

Value

  • A function value object (of class "fv").

Details

This is a method for "[" for the class "fv". It is very similar to [.data.frame except for a few extra checks on the sanity of the result.

See Also

fv.object

Examples

Run this code
data(cells)
 K <- Kest(cells)

 # discard the estimates of K(r) for r  > 0.1
 Ksub <- K[K$r <= 0.1, ]

 # discard the border method estimator
 Ksub <- K[ , names(K) != "border"]

Run the code above in your browser using DataCamp Workspace