This function uses "tidy select" methods of subsetting the columns of a dataset. It's another way of doing ds[,vars].

# S3 method for CrunchDataset
select(.data, ...)

Arguments

.data

A CrunchDataset

...

names of variables in .data or other valid selection functions, passed to tidyselect::vars_select()

Value

.data with only the selected variables.

Examples

if (FALSE) { ds %>% select(contains("ear")) %>% filter(gear > 4) %>% collect() }