Learn R Programming

epiGWAS (version 1.0.2)

subsample: Creates multiple subsamples without replacement

Description

The subsampling is iteratively performed in order to generate multiple subsamples of a predetermined size.

Usage

subsample(n, size = n%/%2, n_subsample)

Arguments

n

original sample size

size

subsample size

n_subsample

total number of subsamples

Value

a matrix of indices with size rows and n_subsample columns.

Examples

Run this code
# NOT RUN {
n <- 50 # Total number of samples
n_subsample <- 10 # Number of subsamples

sub_matrix <- subsample(n = n, n_subsample = n_subsample)
# }

Run the code above in your browser using DataLab