R/bootstrap.R

Defines functions bootstrap

# preprocessr
#
# Function: bootstrap()
#
# Description: A function to bootstrap data
#
# Author: Peter Xenopoulos
#
#

bootstrap <- function( data ) {
  # Get rows of dataframe
  n = nrow(data) 
  
  bootstrap.samples = 
}
peterxeno/preprocessr documentation built on May 25, 2019, 2:10 a.m.