Description Usage Arguments Examples
Convert a matrix (or Matrix) to the Graph class.
1 2 3 4 5 6 7 |
x |
The matrix to convert |
... |
Arguments passed to other methods (ignored for now) |
1 2 3 4 5 6 7 8 9 10 11 | # converting sparse matrix
mat <- Matrix::rsparsematrix(nrow = 10, ncol = 10, density = 0.1)
rownames(x = mat) <- paste0("feature_", 1:10)
colnames(x = mat) <- paste0("cell_", 1:10)
g <- as.Graph(x = mat)
# converting dense matrix
mat <- matrix(data = 1:16, nrow = 4)
rownames(x = mat) <- paste0("feature_", 1:4)
colnames(x = mat) <- paste0("cell_", 1:4)
g <- as.Graph(x = mat)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.