From 4a1396ce81cd4fe1ec37b01c6b8999428b46f874 Mon Sep 17 00:00:00 2001 From: Geoff Boeing Date: Sun, 5 Feb 2023 09:39:57 -0800 Subject: [PATCH] update comment --- modules/04-data-cleaning-exploration/lecture.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/04-data-cleaning-exploration/lecture.ipynb b/modules/04-data-cleaning-exploration/lecture.ipynb index 4188d40..97b44e7 100644 --- a/modules/04-data-cleaning-exploration/lecture.ipynb +++ b/modules/04-data-cleaning-exploration/lecture.ipynb @@ -716,7 +716,7 @@ "metadata": {}, "outputs": [], "source": [ - "# show a pair plot of these SF tracts across these 4 variables\n", + "# show a pair plot of these places across these 3 variables\n", "cols = ['cases_final', 'deaths_final', 'population']\n", "ax = sns.pairplot(df_covid[cols].dropna())" ]