R/fct_resample.R

Defines functions resample

Documented in resample

##' Randomly take a number of elements in a vector
##' 
##' @description This function allows to pick up the last element in a vector 
##' when the parameter size is equal to 1. Passes parameters to `sample.int` 
##' like size.
##' 
##' @param x is a vector
##' @param ... parameters given to the function sample.int
##' @return a vector of length equal to size parameter.
resample <- function(x, ...) x[sample.int(length(x), ...)]
HelBor/wpm documentation built on June 15, 2021, 4:16 p.m.