Description Usage Arguments Value Author(s) Examples
This generic function extracts a matrix of duplicate SELDI data from an object of aclinicalProteomicsData class. It then converts it into a dataframe which is in the same format as the data from Biomarkers wizard. In this dataframe, the intensities and the subject mass-to-charge ratio are represented as numeric variables, while the sample-tag is represented as a character variable.
1 | proteomicsExprsData(Data, ...)
|
Data |
is an object of a |
... |
means other defined arguments. Currently, we have not defined additional arguments. |
A dataframe of expression values, the substance mass, patient labels, and any other defined sample information.
S Nyangoma
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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
head(proteomicsExprsData(OBJECT))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.