Data Science Desktop Survival Guide
by Graham Williams |
|||||
Pipeline |
# Select variables from the dataset and summarise the result.
ds %>% select(min_temp, max_temp, rainfall, sunshine) %>% summary()
Perhaps we would like to review only those observations where there is more than a little rain on the day of the observation. To do so we stats::filter() the observations. |