Learn R Programming

Clustering (version 1.7.7)

evaluate_validation_external_by_metrics: Evaluate external validations by algorithm.

Description

Method that calculates which algorithm behaves best for the datasets provided.

Usage

evaluate_validation_external_by_metrics(df)

Arguments

df

data matrix or data frame with the result of running the clustering algorithm.

Value

A data.frame with all the algorithms that obtain the best results regardless of the dissimilarity measure used.

Details

It groups the results of the execution by algorithms.

Examples

Run this code
# NOT RUN {
result = clustering(
               df = cluster::agriculture,
               min = 4,
               max = 4,
               algorithm='kmeans_arma',
               metrics=c("Precision")
         )

evaluate_validation_external_by_metrics(result)


# }

Run the code above in your browser using DataLab