From 9c3a03645add784370c0303940f0db0da11cb9ea Mon Sep 17 00:00:00 2001 From: kevinzb56 <143kevinshah@gmail.com> Date: Tue, 14 Jan 2025 17:55:03 +0530 Subject: [PATCH] added the ToC --- examples/distances/distances.ipynb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/examples/distances/distances.ipynb b/examples/distances/distances.ipynb index 19afa35f03..71513daf14 100644 --- a/examples/distances/distances.ipynb +++ b/examples/distances/distances.ipynb @@ -15,6 +15,24 @@ " functions available in [1] and show how they can be used with\n", " aeon and scikit-learn estimators on [this page](sklearn_distances.ipynb).\n", "\n", + " ---\n", + "\n", + "## **Navigation**\n", + "- [Introduction](#introduction)\n", + "- [Simple Distance Use Case](#simple-use-case-for-distances)\n", + "- [Basic Motivation for Elastic Distances](#Basic-Motivation-for-Elastic-Distances)\n", + "- [Dynamic Time Warping](#dynamic-time-warping)\n", + "- [Custom parameters for distances](#custom-parameters-for-distances)\n", + "- [Pairwise Distances](#pairwise-distances)\n", + "- [Alignment Paths](#alignment-paths)\n", + "- [Multivariate Distances](#multivariate-distances)\n", + "- [Unequal Length Series](#unequal-length-series)\n", + "- [Other Distance Functions](#other-distance-functions)\n", + "\n", + "---\n", + "\n", + "## **Introduction**\n", + "\n", "The goal of a distance computation is to measure the dis-similarity between the time\n", "series `a` and `b`. A distance function should take `a` and `b` as parameters and return\n", "a float that is the computed distance between `a` and `b`. The value returned should\n",