range.fv {spatstat} | R Documentation |
Compute the range, maximum, or minimum of the function values in a summary function.
## S3 method for class 'fv' range(..., na.rm = TRUE, finite = na.rm) ## S3 method for class 'fv' max(..., na.rm = TRUE, finite = na.rm) ## S3 method for class 'fv' min(..., na.rm = TRUE, finite = na.rm)
... |
One or more function value tables (objects of class |
na.rm |
Logical. Whether to ignore |
finite |
Logical. Whether to ignore values that are
infinite, |
These are methods for the generic range
,
max
and min
.
They compute the range, maximum, and minimum of the function values
that would be plotted on the y axis by default.
For more complicated calculations, use with.fv
.
Numeric vector of length 2.
Adrian Baddeley Adrian.Baddeley@curtin.edu.au
, Rolf Turner r.turner@auckland.ac.nz and Ege Rubak rubak@math.aau.dk.
G <- Gest(cells) range(G) max(G) min(G)