HCA | R Documentation |
Hierarchical Cluster Analysis is a numerical technique that uses agglomerative clustering to identify clusters or groupings of samples.
HCA(
dist_method = "euclidean",
cluster_method = "complete",
minkowski_power = 2,
factor_name,
...
)
dist_method |
(character) Distance measure. Allowed values are limited to the following:
The default is |
cluster_method |
(character) Agglomeration method. Allowed values are limited to the following:
The default is |
minkowski_power |
(numeric) The default is |
factor_name |
(character) The name of a sample-meta column to use. |
... |
Additional slots and values passed to |
This object makes use of functionality from the following packages:
stats
A HCA
object with the following output
slots:
dist_matrix | (dist) An object containing pairwise distance information between samples. |
hclust | (hclust) An object of class hclust which describes the tree produced by the clustering process. |
factor_df | (data.frame) |
A HCA
object inherits the following struct
classes:
[HCA]
>> [model]
>> [struct_class]
R Core Team (2024). R: A Language and Environment for Statistical Computing. R Foundation for Statistical Computing, Vienna, Austria. https://www.R-project.org/.
M = HCA(
dist_method = "euclidean",
cluster_method = "complete",
minkowski_power = numeric(0),
factor_name = "V1")
D = iris_DatasetExperiment()
M = HCA(factor_name='Species')
M = model_apply(M,D)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.