Description Usage Arguments Value Author(s) Examples
View source: R/CORE_clustering.R
from calculated stability based on Rand indexes for consecutive clustering run, find the resolution (window), where the stability is the highest
1 2 | find_optimal_stability(list_clusters, run_RandIdx, bagging = FALSE,
windows = seq(from = 0.025, to = 1, by = 0.025))
|
list_clusters |
is a |
run_RandIdx |
is a |
bagging |
is a logical that is true if bagging is to be performed, changes return |
windows |
a numeric vector specifying the ranges of each window. |
bagging == FALSE => a list
with optimal stability, cluster
count and summary stats bagging == TRUE => a list
with high res
cluster count, optimal cluster count and keystats
Quan Nguyen, 2017-11-25
1 2 3 4 5 6 7 8 | day5 <- day_5_cardio_cell_sample
mixedpop2 <-new_summarized_scGPS_object(ExpressionMatrix = day5$dat5_counts,
GeneMetadata = day5$dat5geneInfo, CellMetadata = day5$dat5_clusters)
cluster_all <-clustering(object=mixedpop2)
stab_df <- find_stability(list_clusters=cluster_all$list_clusters,
cluster_ref = cluster_all$cluster_ref)
optimal_stab <- find_optimal_stability(list_clusters =
cluster_all$list_clusters, stab_df, bagging = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.