Learn R Programming

Seurat (version 3.1.0)

as.Graph: Convert a matrix (or Matrix) to the Graph class.

Description

Convert a matrix (or Matrix) to the Graph class.

Usage

as.Graph(x, ...)

# S3 method for Matrix as.Graph(x, ...)

# S3 method for matrix as.Graph(x, ...)

Arguments

x

The matrix to convert

...

Arguments passed to other methods (ignored for now)

Examples

Run this code
# NOT RUN {
# 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)

# }

Run the code above in your browser using DataLab