View source: R/goodnessOfFit.R
goodnessOfFit | R Documentation |
Goodness of fit results of the iC10 classifier: this function computes correlations between the signatures of the training dataset and the classified features.
goodnessOfFit(obj, iC10=1:10, newdata=NULL,...)
## S3 method for class 'iC10'
goodnessOfFit(obj, iC10=1:10, newdata=NULL,...)
obj |
An object of |
iC10 |
Groups to compute goodness of fit. |
newdata |
The feature data to compute the goodness of fit. Must be the samples classified in |
... |
Additional arguments passed to |
It prints the correlation for each iC10.
Oscar M Rueda
Ali HR et al. Genome-driven integrated classification of breast cancer validated in over 7,500 samples. Genome Biology 2014; 15:431. Curtis et al. The genomic and transcriptomic architecture of 2,000 breast tumours reveals novel subgroups. Nature 2012; 486:346-352.
iC10
require(iC10TrainingData)
data(train.CN)
data(train.Exp)
features <- matchFeatures(Exp=train.Exp, Exp.by.feat="probe")
features <- normalizeFeatures(features, "scale")
res <- iC10(features)
goodnessOfFit(res, newdata=features)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.