Hi all,
I have an expression set which contains the following:
ExpressionSet
## assayData: 15905 features, 276 samples
## element names: exprs
## protocolData: none
## phenoData
## sampleNames: MNC5 MNC6 ... P0892 (276 total)
## varLabels: HIPO-ID PID ... IC50batch (114 total)
## varMetadata: labelDescription
## featureData
## featureNames: D_001_1 D_001_2 ... ENSG00000273488 (15905 total)
## fvarLabels: name type id subtype
## fvarMetadata: labelDescription
Now i know how to access various elements i.e, RNA seq or DNA methylation data but its complicated and being a new user it becomes a tad bit difficult to use for further analysis etc. To make it easier i would like to convert it in a matrix or a data frame which can contain all the relevant data. For example, rows would be patient ID and columns can be other features like drugs and their dosages or methylation probe results or RNA seq results etc.
I know exprs gives the main data i.e, some survival data in this case, and pData or fData for phenotypic or other features. But what i want to know is whether there is a method i can combine all of them into one simple matrix or data frame? That would make analysis easier. So, is that possible?
Thanks,
Shabbeer
I don't fully understand your problem, but you can convert your expression set to a data frame using the function:
as.data.frame("your expression set")--where the rows then would be the samples, and in the columns there would be all your features plus your phenoData variables.
Hope that helps,
Efstathios