From 3a52221a8cb6a290d0d49e55d5099a77c3c17e0d Mon Sep 17 00:00:00 2001 From: Carlos <110995013+crr004@users.noreply.github.com> Date: Mon, 29 Jul 2024 12:42:04 +0200 Subject: [PATCH] Corrected typo --- notebooks/data_cleaning/raw/tut2.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/data_cleaning/raw/tut2.ipynb b/notebooks/data_cleaning/raw/tut2.ipynb index 99d2fe694..fb6ea8dae 100644 --- a/notebooks/data_cleaning/raw/tut2.ipynb +++ b/notebooks/data_cleaning/raw/tut2.ipynb @@ -76,7 +76,7 @@ "# generate 1000 data points randomly drawn from an exponential distribution\n", "original_data = np.random.exponential(size=1000)\n", "\n", - "# mix-max scale the data between 0 and 1\n", + "# min-max scale the data between 0 and 1\n", "scaled_data = minmax_scaling(original_data, columns=[0])\n", "\n", "# plot both together to compare\n",