Description
Extracts a uniform random sample from a dataset or vector. Provides a simpler API than base R.
Author: Bryce Chamberlain. Tech Review: Maria Gonzalez.
Usage
spl(x, n = 10, warn = TRUE, replace = FALSE, seed = NULL, ...)
Value
Sample dataframe/vector.
Arguments
- x
Data to sample from.
- n
Number or percentage of rows/values to return. If less than 1 it will be interpreted as a percentage.
- warn
Warn if sampling more than the size of the data.
- replace
Whether or not to sample with replacement.
- seed
Set a seed to allow consistent/replicable sampling.
- ...
Other parameters passed to sample()
Examples
Run this codespl( c(1:100) )
spl( c(1:100), n = 50 )
spl( iris )
Run the code above in your browser using DataLab