| print.GctMatrix | R Documentation |
Print method for GctMatrix object
## S3 method for class 'GctMatrix'
print(x, showAll = FALSE, ...)
x |
A GctMatrix object |
showAll |
Logical, whether all values should be printed |
... |
Paramters passed to the default method of |
No return value, called for side effects (prints to console).
m1 <- matrix(1:6, nrow=3, dimnames=list(sprintf("G%d", 1:3), sprintf("S%d", 1:2)))
gm1 <- GctMatrix(m1, desc=sprintf("Gene%d", 1:3))
gm1
mBig <- matrix(round(rnorm(1000),3),
nrow=100, dimnames=list(sprintf("G%d", 1:100), sprintf("S%d", 1:10)))
gmBig <- GctMatrix(mBig, desc=sprintf("Gene%d", 1:100))
gmBig
print(gmBig, showAll=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.