In Stata the "lookfor" command offers a quick way to search for variables in a dataset (and it searches both the variable names and labels). So "lookfor education" quickly finds you variables related to education. Is there an equivalent shortcut function in R?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
migrated from stats.stackexchange.com Oct 8 '12 at 13:46
|
You can simply
First I grep each column, then I grep the column names. Then I keep only information whether grep matched anything and record it for each column separately. Instead of Here is an example:
|
|||
|
|
which()command with thenames()command for this if you're working with a data frame, orcolnames()if you're working with a matrix – Macro Oct 8 '12 at 12:54