September 2018
Beginner
206 pages
4h 27m
English
We will utilize the dplyr verbs to create complex data summary tables. In order to do so, the following steps need to be executed:
data(diamonds)
diamonds %>% group_by(cut, color, clarity) %>% summarise(n())
diamonds %>% group_by(cut) %>% summarise(mean = mean(price), median = median(price))
Read now
Unlock full access