"fv"
.## S3 method for class 'fv':
[(x, i, j, \dots, drop=FALSE)
"fv"
(see fv.object
).
Essentially a data frame.x
.x
."fv"
)."["
for the class "fv"
.
It is very similar to [.data.frame
except for a few extra checks on the sanity of the result.fv.object
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 DataLab