powered by
data.frame
Grep for column names from a data.frame
grepdf( pattern, x, ..., ignore.case = FALSE, perl = FALSE, value = FALSE, fixed = FALSE, useBytes = FALSE, invert = FALSE )
column names of x matching grep condition.
passed to grep
grep
data.frame to work with
force later arguments to be passed by name
grep, grepv
grepv
d <- data.frame(xa=1, yb=2) # starts with grepdf('^x', d) # ends with grepdf('b$', d)
Run the code above in your browser using DataLab