Description Usage Arguments Value See Also Examples
clust_sc computes a hierarchical cluster analysis for the identification
of indicator redundancies.
1 |
dist_mat |
The distance matrix computed by the |
method_clust |
The agglomeration method to be used in the |
... |
Further arguments to be passed to the method |
An object of class hclust is returned, which describes the tree produced by the
clustering process. See for more details hclust. Additionally,
the cophenetic correlation coefficient and the Gower distance are printed in the
console as guidance for selecting the best agglomeration method.
Other score-based IND performance functions:
dist_sc_group(),
dist_sc(),
expect_resp(),
plot_clust_sc(),
plot_spiechart(),
scoring(),
summary_sc()
1 2 3 4 5 6 | # Using the Baltic Sea demo data
scores_tbl <- scoring(trend_tbl = model_trend_ex,
mod_tbl = all_results_ex, press_type = press_type_ex)
scores_mat <- summary_sc(scores_tbl)$scores_matrix
dist_matrix <- dist_sc(scores_mat, method_dist = "euclidean")
clust_analysis <- clust_sc(dist_matrix, method_clust = "complete")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.