| get.dorfman.cv.fold.data | R Documentation | 
Splits Dorfman testing data into crossvalidation data sets.
get.dorfman.cv.fold.data(X, Y, Z, K)
X | 
 Design matrix with first column a column of 1s.  | 
Y | 
 Group testing output from one of the functions   | 
Z | 
 Group testing output from one of the functions   | 
K | 
 The number of crossvalidation folds.  | 
List of length K of the crossvalidation training and testing data sets.
# generate individual covariate values and disease statuses N <- 160 data <- model1(N) X <- data$X Y.true <- data$Yi Se <- c(.92,.95) # set master pool and individual assay sensitivity Sp <- c(.97,.98) # set master pool and individual assay specificity cj <- 4 # set size of master pools # subject individuals to Dorfman testing assay.data <- dorfman.assay.gen(Y.true,Se,Sp,cj) Z <- assay.data$Z Y <- assay.data$Y dorfman.cv.fold.data <- get.dorfman.cv.fold.data(X,Y,Z,K=5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.