Subtype_ID | R Documentation |
this function takes the proximity matrix from RF_optimal_test and creates a proximity graph, then utilizes infomap for community detection
Subtype_ID(
proximity_matrix = proximity_matrix,
mode = mode,
weighted = weighted,
diag = diag
)
proximity_matrix |
the resulting proximity matrix from RF_prediction |
mode |
specifies how igraph should interpret the supplied matrix |
weighted |
whether or not to create a weighted graph from supplied matrix |
diag |
whether or not to include the diagonal of the supplied matrix in the calculation |
proximity_matrix <- RF_prediction$proximity
mode = "undirected"
weighted = TRUE
diag = FALSE
subtypes = Subtype_ID(proximity_matrix=proximity_matrix, mode=mode, weighted=weighted, diag=diag)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.