-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
average utility in pairwise module #743
Copy link
Copy link
Closed
Labels
Description
We should add an average utility function which would work as below:
average(X, metric="euclidean") => return mean
average(X, metric="mahattan") => return median
This will be useful in nearest-centroid or in k-means as the averaging operator used in these algorithms depends on the metric used (K-means with manhattan distance is called "k-medians").
Reactions are currently unavailable