From ba1075d2980335ce15c30069928104971a37e4b6 Mon Sep 17 00:00:00 2001 From: Volodymyr Orlov Date: Sun, 30 Aug 2020 16:49:48 -0700 Subject: [PATCH] fix: broken links --- src/math/distance/mahalanobis.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/distance/mahalanobis.rs b/src/math/distance/mahalanobis.rs index 64a68f6..3d499a3 100644 --- a/src/math/distance/mahalanobis.rs +++ b/src/math/distance/mahalanobis.rs @@ -1,7 +1,7 @@ //! # Mahalanobis Distance //! //! The Mahalanobis distance (MD) is the distance between two points in multivariate space. -//! In a regular Euclidean space the distance between any two points can be measured with [Euclidean distance](euclidian/index.html). +//! In a regular Euclidean space the distance between any two points can be measured with [Euclidean distance](../euclidian/index.html). //! For uncorrelated variables, the Euclidean distance equals the MD. However, if two or more variables are correlated the measurements become impossible //! with Euclidean distance because the axes are no longer at right angles to each other. MD on the other hand, is scale-invariant, //! it takes into account the covariance matrix of the dataset when calculating distance between 2 points that belong to the same space as the dataset.