From c932dbff5c05830d6a0fa36327b1f2655899e3ef Mon Sep 17 00:00:00 2001 From: Ravindranath Sawane <65583665+ravindranath-sawane@users.noreply.github.com> Date: Mon, 23 Aug 2021 19:28:11 +0530 Subject: [PATCH] Audit 2.0 Chaged 'tibble' to 'table' --- 4-Classification/1-Introduction/solution/lesson_10.Rmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/4-Classification/1-Introduction/solution/lesson_10.Rmd b/4-Classification/1-Introduction/solution/lesson_10.Rmd index aa9ffe6d..8d982783 100644 --- a/4-Classification/1-Introduction/solution/lesson_10.Rmd +++ b/4-Classification/1-Introduction/solution/lesson_10.Rmd @@ -125,12 +125,12 @@ df %>% There are a finite number of cuisines, but the distribution of data is uneven. You can fix that! Before doing so, explore a little more. -2. Next, let's assign each cuisine into it's individual tibble and find out how much data is available (rows, columns) per cuisine. +2. Next, let's assign each cuisine into it's individual table and find out how much data is available (rows, columns) per cuisine. ![Artwork by \@allison_horst](../images/dplyr_filter.jpg) ```{r cuisine_df} -# Create individual tibbles for the cuisines +# Create individual tables for the cuisines thai_df <- df %>% filter(cuisine == "thai") japanese_df <- df %>%