is_network | R Documentation |
Check content of a given object to determine if it's a network, meaning a squared matrix of similarity score between genes.
is_network(network)
network |
matrix or data.frame, object to test to be a network |
list, a boolean as first element and in second element NULL or the reason why boolean is set to FALSE
net <- matrix(runif(40*40), 40)
colnames(net) <- paste0("gene_", seq_len(ncol(net)))
rownames(net) <- paste0("gene_", seq_len(nrow(net)))
is_network(net)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.