Scan joint graph modularity for a range of k (or k.self) values Builds graph with different values of k (or k.self if scan.k.self=TRUE), evaluating modularity of the resulting multilevel clustering NOTE: will run evaluations in parallel using con$n.cores (temporarily setting con$n.cores to 1 in the process)
scanKModularity(
con,
min = 3,
max = 50,
by = 1,
scan.k.self = FALSE,
omit.internal.edges = TRUE,
verbose = TRUE,
plot = TRUE,
...
)
a data frame with $k $m columns giving k and the corresponding modularity
Conos object to test
numeric Minimal value of k to test (default=3)
numeric Value of k to test (default=50)
numeric Scan step (default=1)
boolean Whether to test dependency on scan.k.self (default=FALSE)
boolean Whether to omit internal edges of the graph (default=TRUE)
boolean Whether to provide verbose output (default=TRUE)
boolean Whether to plot the output (default=TRUE)
other parameters will be passed to con$buildGraph()