From 7b7225e10feb3cdfdce75392d14ecebd873046a6 Mon Sep 17 00:00:00 2001 From: nishko Date: Tue, 17 Feb 2026 05:17:36 -0500 Subject: [PATCH] fixed the typo --- notebooks/pandas/raw/tut_3.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/pandas/raw/tut_3.ipynb b/notebooks/pandas/raw/tut_3.ipynb index 5472c45a3..f4ec72e87 100644 --- a/notebooks/pandas/raw/tut_3.ipynb +++ b/notebooks/pandas/raw/tut_3.ipynb @@ -44,7 +44,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "`groupby()` created a group of reviews which allotted the same point values to the given wines. Then, for each of these groups, we grabbed the `points()` column and counted how many times it appeared. `value_counts()` is just a shortcut to this `groupby()` operation. \n", + "`groupby()` created a group of reviews which allotted the same point values to the given wines. Then, for each of these groups, we grabbed the `points` column and counted how many times it appeared. `value_counts()` is just a shortcut to this `groupby()` operation. \n", "\n", "We can use any of the summary functions we've used before with this data. For example, to get the cheapest wine in each point value category, we can do the following:" ]