From 14729a84fd83c0a8f80fc2dfffb2a73c26b1daa5 Mon Sep 17 00:00:00 2001 From: arhamakheel Date: Wed, 14 Mar 2018 12:37:40 -0700 Subject: [PATCH] Updated Comments --- Introduction to Data Manipulation with dplyr/Introduction to dplyr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Introduction to Data Manipulation with dplyr/Introduction to dplyr b/Introduction to Data Manipulation with dplyr/Introduction to dplyr index 6a6e3e4..e72beba 100644 --- a/Introduction to Data Manipulation with dplyr/Introduction to dplyr +++ b/Introduction to Data Manipulation with dplyr/Introduction to dplyr @@ -109,7 +109,6 @@ wine$country = ifelse(wine$designation == "Piedra Feliz", "Chile", wine$country) wine$country = ifelse(wine$variety == "Red Blend", "Turkey", wine$country) #Combining Datasets - #Creating a new subset by total number of rows by country newwine = wine %>% group_by(country) %>% summarize(total = n()) %>% arrange(desc(total)) @@ -132,3 +131,6 @@ left #Combining two data frames using right join function right = right_join(subset1, subset2) right + +#####End of Code#### + -- libgit2 0.26.0