diff --git a/RBeginnersExercise2.Rmd b/RBeginnersExercise2.Rmd index 7fe09763355ab97aa32e6839525457ee29d0874c..9f4e61ad730956f51ea8f9bd12a668d87f731140 100644 --- a/RBeginnersExercise2.Rmd +++ b/RBeginnersExercise2.Rmd @@ -122,7 +122,7 @@ The `unique()` function in R can be used to find all unique values in a specific ``` -By using the `sapply()` function, try to find the unique values in each column in the `menu` table. +By using the `sapply()` function, find the unique values in each column in the `menu` table. ```{r} # Write your code below diff --git a/RBeginnersExercise2_Sol.Rmd b/RBeginnersExercise2_Sol.Rmd index 3b019f0012930ce9b13d5978833591430ab27e1f..3c84d070db06ecc4e13900f3110e77b0c44ab510 100644 --- a/RBeginnersExercise2_Sol.Rmd +++ b/RBeginnersExercise2_Sol.Rmd @@ -123,7 +123,7 @@ The `unique()` function in R can be used to find all unique values in a specific unique(menu$Price) ``` -By using the `sapply()` function, try to find the unique values in each column in the `menu` table. +By using the `sapply()` function, find the unique values in each column in the `menu` table. ```{r} # Write your code below