unibootsample: unibootsample

View source: R/unibootsample.R

unibootsampleR Documentation

unibootsample

Description

unibootsample

Usage

unibootsample(data, size)

Arguments

data

A dataframe or matrix to be univariately bootstrapped

size

size of each bootstrap sample as a fraction of the total sample size. Total sample size must be evenly divisible by "size".

Value

A matrix or dataframe with nrow=nrow(X)*size

Examples

X<-c(0:9)
Y<-c(20:29)
Z<-cbind(X,Y)
unibootsample(Z,1)

Omisc documentation built on Aug. 9, 2022, 5:09 p.m.

Related to unibootsample in Omisc...