CNV.data-class {conumee} | R Documentation |
Intensities of one or multiple samples are stored in this class.
## S4 method for signature 'CNV.data' show(object) ## S4 method for signature 'CNV.data,ANY,ANY,ANY' x[i] ## S4 method for signature 'CNV.data' names(x) ## S4 replacement method for signature 'CNV.data' names(x) <- value
object |
|
x |
|
i |
index. |
value |
Replacement names. |
Use CNV.load
to create.
CNV.data
class.
Volker Hovestadt conumee@hovestadt.bio
# create object library(minfiData) data(MsetEx) d <- CNV.load(MsetEx) # general information d show(d) # show or replace sample names names(d) names(d) <- toupper(names(d)) # subset samples d[1:2]