r - dplyr::manip: How to use string arguments (holding colnames) instead of column names -
I like the description of the headline:
instead:
< Code> Filters (mtcars, cyl == 8) Ivar
such as
mtcars [Joe (mtcars [, var] == 8],]
I think there are functions like
starts_with ()
but none of IMHO In fact, it is not suitable for the above mentioned rather than simple application.
try this:
mtcars%>% (filter (.,. [[Var]] == 8))
Comments
Post a Comment