From 7afc723efa303952e7f64a812a1240e0176d5d3f Mon Sep 17 00:00:00 2001 From: Stefanie Molin <24376333+stefmolin@users.noreply.github.com> Date: Tue, 5 Nov 2024 21:39:08 +0000 Subject: [PATCH] Replace bio abbreviations; make value_counts() examples consistent --- notebooks/1-getting_started_with_pandas.ipynb | 2 +- slides/0-introduction.ipynb | 4 ++-- slides/1-getting_started_with_pandas.ipynb | 2 +- slides/html/workshop.slides.html | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/notebooks/1-getting_started_with_pandas.ipynb b/notebooks/1-getting_started_with_pandas.ipynb index d390b97..b89d6ce 100644 --- a/notebooks/1-getting_started_with_pandas.ipynb +++ b/notebooks/1-getting_started_with_pandas.ipynb @@ -2269,7 +2269,7 @@ } ], "source": [ - "df.value_counts(subset=['nametype', 'fall'], normalize=True)" + "meteorites.value_counts(subset=['nametype', 'fall'], normalize=True)" ] }, { diff --git a/slides/0-introduction.ipynb b/slides/0-introduction.ipynb index ddb2592..756e3de 100644 --- a/slides/0-introduction.ipynb +++ b/slides/0-introduction.ipynb @@ -51,8 +51,8 @@ "- πŸ‘©β€πŸ’» Software engineer at Bloomberg in NYC\n", "- πŸš€ Core developer of [numpydoc](https://github.com/numpy/numpydoc)\n", "- ✍️ Author of [Hands-On Data Analysis with Pandas](https://www.amazon.com/Hands-Data-Analysis-Pandas-visualization-dp-1800563450/dp/1800563450/) (currently in its second edition; translated into Korean and Simplified Chinese)\n", - "- πŸŽ“ BS in operations research from Columbia University\n", - "- πŸŽ“ MS in computer science (ML specialization) from Georgia Tech" + "- πŸŽ“ Bachelor's in operations research from Columbia University\n", + "- πŸŽ“ Master's in computer science (ML specialization) from Georgia Tech" ] }, { diff --git a/slides/1-getting_started_with_pandas.ipynb b/slides/1-getting_started_with_pandas.ipynb index ea93a8a..d25f754 100644 --- a/slides/1-getting_started_with_pandas.ipynb +++ b/slides/1-getting_started_with_pandas.ipynb @@ -2654,7 +2654,7 @@ } ], "source": [ - "df.value_counts(subset=['nametype', 'fall'], normalize=True)" + "meteorites.value_counts(subset=['nametype', 'fall'], normalize=True)" ] }, { diff --git a/slides/html/workshop.slides.html b/slides/html/workshop.slides.html index 8bd6477..72ca28f 100644 --- a/slides/html/workshop.slides.html +++ b/slides/html/workshop.slides.html @@ -7540,8 +7540,8 @@

BioΒΆ

@@ -9801,7 +9801,7 @@

How many
InΒ [25]:
-
df.value_counts(subset=['nametype', 'fall'], normalize=True)
+
meteorites.value_counts(subset=['nametype', 'fall'], normalize=True)