From f4bb56094f61ea634f3ea3249156303161800008 Mon Sep 17 00:00:00 2001 From: Claudiu Forgaci <33600128+cforgaci@users.noreply.github.com> Date: Mon, 22 Jan 2024 17:21:17 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: fcjerome <129063142+fcjerome@users.noreply.github.com> --- episodes/03-explore-data.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/03-explore-data.Rmd b/episodes/03-explore-data.Rmd index 56fe065e..5fab2d56 100644 --- a/episodes/03-explore-data.Rmd +++ b/episodes/03-explore-data.Rmd @@ -180,7 +180,7 @@ year_country_gdp_eurasia <- gapminder %>% filter(continent == "Europe" | continent == "Asia") %>% # | operator (OR) - one of the conditions must be met select(year, country, gdpPercap) -nrow(year_country_lifeExp_Africa) +nrow(year_country_gdp_eurasia) ```