sizeFactors {DESeq} | R Documentation |
The sizeFactors vector assigns to each column of the count data a value, the size factor, such that count values in the columns can be brought to a common scale by dividing by the corresponding size factor.
## S4 method for signature 'CountDataSet' sizeFactors(object) ## S4 replacement method for signature 'CountDataSet,numeric' sizeFactors(object) <- value
object |
a |
value |
a numeric vector, one size factor for each column in the count data. |
Simon Anders, sanders@fs.tum.de
cds <- makeExampleCountDataSet() cds <- estimateSizeFactors( cds ) sizeFactors(cds)