Description Usage Arguments Value See Also Examples
Extract Parts of an Object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## S4 method for signature 'FixedExpressionData,ANY,ANY'
x[i, j, ..., drop = TRUE]
## S4 method for signature 'FixedExpressionData,ANY,missing'
x[i, j, ..., drop = TRUE]
## S4 method for signature 'FixedExpressionData,missing,ANY'
x[i, j, ..., drop = TRUE]
## S4 method for signature 'FixedExpressionData,ANY,missing'
x[[i, j, ...]]
## S4 method for signature 'FixedExpressionData,missing,ANY'
x[[i, j, ...]]
## S4 method for signature 'FixedExpressionData,ANY,ANY'
x[[i, j, ...]]
|
x |
An object of class |
i |
the rows index |
j |
the column index |
... |
unused |
drop |
unused |
An object of class FixedExpressionData
Other fixed data information extraction functions: dim,FixedExpressionData-method
,
getNormalizationMethod
,
getTargetValue
1 2 3 4 5 | data(exampleMAS5)
myData <- setNormalizationMethod(exampleMAS5, "MAS5.0", targetValue=500)
dim(myData)
dim(myData[1:10,1:3])
dim(myData[[1:10,1:3]])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.