Description Usage Arguments Author(s) References See Also Examples
View source: R/row.extractor.R
The row.extractor
function takes a data.frame
and
extracts rows with the min, median, or max values of a given variable, or
extracts rows with specific quantiles of a given variable.
1 | row.extractor(data, extract.by, what = "all")
|
data |
The source |
extract.by |
The column which will be used as the reference for extraction; can be specified either by the column number or the variable name. |
what |
Options are |
Ananda Mahto
which.quantile
function by cbeleites:
http://stackoverflow.com/users/755257/cbeleites
min
, max
, median
,
which.min
, which.max
, quantile
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Make up some data
set.seed(1)
dat = data.frame(V1 = 1:50, V2 = rnorm(50),
V3 = round(abs(rnorm(50)), digits=2),
V4 = sample(1:30, 50, replace=TRUE))
# Get a sumary of the data
summary(dat)
# Get the rows corresponding to the 'min', 'median', and 'max' of 'V4'
row.extractor(dat, 4)
# Get the 'min' rows only, referenced by the variable name
row.extractor(dat, "V4", "min")
# Get the 'median' rows only. Notice that there are two rows
# since we have an even number of cases and true median
# is the mean of the two central sorted values
row.extractor(dat, "V4", "median")
# Get the rows corresponding to the deciles of 'V3'
row.extractor(dat, "V3", seq(0.1, 1, 0.1))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.