Description Usage Arguments Value Examples
function that create a information data frame that storage all parameters we need
1  | summaryInfo(NumOfRep, NumOfCv, seed, phenoData_df, respCol_index)
 | 
NumOfRep | 
 number of repeat measurements in this trial  | 
NumOfCv | 
 number of cross validation in this trail  | 
seed | 
 seed value  | 
phenoData_df | 
 a data frame contains sample id(in first column) and variables we interested in(in the second column), the first column should named "Sample"  | 
respCol_index | 
 response variable col number in beta data frame  | 
A data frame containing design experiment information
NumOfRep : number of repeat measurements in this trial
NumOfCv : number of cross validation in this trail
seed : seed value for trail
... : sample names
1 2 3 4 5 6 7 8 9 10 11  | ## Not run: 
 data(pheno)
 information_df <- summaryInfo(
  NumOfRep = 10,
  NumOfCv = 5,
  seed = 122,
  phenoData_df = pheno,
  respCol_index = 2
 )
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.