Description Usage Arguments Value Author(s) References Examples
This generic function computes input parameters for the sample size calculation function.
1 | sampleSizeParameters(Data,intraclasscorr,signifcut, ...)
|
Data |
An object of |
intraclasscorr |
An object of |
signifcut |
An object of |
... |
Some methods for this generic function may take additional, optional arguments. At present none do. |
A list of parameters:
Corr |
the intraclass correlation from your pilot data. |
techVar |
the technical variance from your pilot data. |
bioVar |
the biological variance from your pilot data. |
DIFF |
the clinically important difference from your pilot data. |
no.peaks |
the number of peaks detected by the Biomarker wizard. |
Stephen Nyangoma
Nyangoma SO, Ferreira JA, Collins SI, Altman DG, Johnson PJ, and Billingham LJ: Sample size calculations for planning clinical proteomic profiling studies using mass spectrometry. Bioinformatics, 2009, Submitted
Smyth GK, et al.: Use of within-array replicate spots for assessing differential expression in microarray experiments. Bioinformatics 2005, 21, 2067 - 75
Smyth GK: Linear models and emperical Bayes methods for assessing differential expression in microarray experiments. Stat Appl Genet Mol Biol 2004, 3, 1, Article 3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | intraclasscorr <- 0.60 #cut-off for intraclass correlation
signifcut <- 0.05 #significance cut-off
data(liverdata)
data(liver_pheno)
OBJECT=new("aclinicalProteomicsData")
OBJECT@rawSELDIdata=as.matrix(liverdata)
OBJECT@covariates=c("tumor" , "sex")
OBJECT@phenotypicData=as.matrix(liver_pheno)
OBJECT@variableClass=c('numeric','factor','factor')
OBJECT@no.peaks=53
sampleSizeParameters(OBJECT,intraclasscorr,signifcut)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.