powered by
Add additional variable names to a tplyr_meta() object.
tplyr_meta()
add_variables(meta, names)add_filters(meta, filters)
add_filters(meta, filters)
tplyr_meta object
A tplyr_meta object
A list of names, providing variable names of interest. Provide as a list of quosures using rlang::quos()
rlang::quos()
A list of symbols, providing variable names of interest. Provide as a list of quosures using `rlang::quos()`
m <- tplyr_meta() m <- add_variables(m, rlang::quos(a, b, c)) m <- add_filters(m, rlang::quos(a==1, b==2, c==3)) m
Run the code above in your browser using DataLab