Learn R Programming

cpgen (version 0.1)

cCV: Generate phenotype vectors for cross validation

Description

This function takes a phenotype vector and generates folds * reps masked vectors for cross validation. Every vector has as many additional missing values as length(y) / folds.

Usage

cCV(y,folds=5,reps=1,matrix=FALSE,seed=NULL)

Arguments

y
vector of phenotypes - may already contain missing values
folds
integer, number of folds
reps
integer, number of replications
matrix
boolean, if TRUE function returns a matrix rather than a list
seed
numeric scalar, seed for sample

Value

List (matrix) with as many items (columns) as folds * reps

See Also

clmm, get_pred, get_cor

Examples

Run this code
## Not run: 
# # generate random data
# rand_data(500,5000)
# 
# y_CV <- cCV(y,folds=5,reps=20)
# ## End(Not run)

Run the code above in your browser using DataLab