Extract.findFn {sos} | R Documentation |
Extract rows from a findFn
object
## S3 method for class 'findFn' x[i, j, drop = if (missing(i)) TRUE else length(cols) == 1]
x |
An object of class |
i |
a valid object to select rows of |
j |
If not missing, the extraction function returns an object of class
|
drop |
logical: if FALSE and |
1. if(missing(j)) extract the subset with the PackageSummary
attribute recomputed on the subset.
2. else return(Extract.data.frame(x, i, j, drop))
If j
is missing, return an object of class c('findFn',
'data.frame') else return whatever is returned by
Extract.data.frame
.
Spencer Graves
z <- findFn("spline", maxPages = 2) z1 <- z[1,] z.2 <- z[, 2]