Description Usage Arguments Value Author(s) Examples
View source: R/metaseqr.util.R
Returns a character vector with html formatted rows.
Essentially, it collapses every row of a matrix to a
single character and puts a <tr></tr> tag set around. It
is meant to be applied to the output of
make.html.cells
. Internal use.
1 | make.html.rows(mat)
|
mat |
the data matrix, usually the output of
|
A character vector with html formatted rows of a matrix.
Panagiotis Moulos
1 2 3 4 5 | data.matrix <- round(1000*matrix(runif(400),100,4))
rownames(data.matrix) <- paste("gene_",1:100,sep="")
colnames(data.matrix) <- c("C1","C2","T1","T2")
the.cells <- make.html.cells(data.matrix)
the.rows <- make.html.rows(the.cells)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.