| simplicial_degree | R Documentation |
Counts how many simplices of each dimension contain each node.
simplicial_degree(sc, normalized = FALSE)
sc |
A |
normalized |
Divide by maximum possible count. Default |
Data frame with node, columns d0 through
d_k, and total (sum of d1+). Sorted by total descending.
mat <- matrix(c(0,.6,.5,.6,0,.4,.5,.4,0), 3, 3)
colnames(mat) <- rownames(mat) <- c("A","B","C")
sc <- build_simplicial(mat, threshold = 0.3)
simplicial_degree(sc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.