evaluate_validation_internal_by_metrics {Clustering}R Documentation

Evaluate internal validations by algorithm.

Description

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

Usage

evaluate_validation_internal_by_metrics(df)

Arguments

df

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

Details

It groups the results of the execution by algorithms.

Value

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

Examples


result = clustering(
               df = cluster::agriculture,
               min = 4,
               max = 5,
               algorithm='kmeans_rcpp',
               metrics=c("Recall","Silhouette")
         )

evaluate_validation_internal_by_metrics(result)

## Not run: 
evaluate_validation_internal_by_metrics(result$result)

## End(Not run)


[Package Clustering version 1.7.7 Index]