Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC] Fix 2 typos in distances notebook #1873

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/distances/distances.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
" shape `(n,)` or `(1,n)`. The simplest distance is Euclidean distance. This measures the sum of squared\n",
"distances between points.\n",
"\n",
"$$d_e(a, b) = \\sqrt{\\sum_{i=1}^m(a_i-b_i)}$$\n",
"$$d_e(a, b) = \\sqrt{\\sum_{i=1}^m(a_i-b_i)^2}$$\n",
"\n",
"The most popular time series specific distance is dynamic time warping (DTW). These\n",
"and other distance functions are imported form `aeon.distances`."
Expand Down Expand Up @@ -197,7 +197,7 @@
{
"cell_type": "markdown",
"source": [
"Elastic distances such dynamic time warping realign series to compensate for offset.\n",
"Elastic distances such as dynamic time warping realign series to compensate for offset.\n",
"If we use `dtw_distance` instead of `euclidean_distance`"
],
"metadata": {
Expand Down