I am using the following to get a sense of which variables are char, num, etc, and it works fine but now I'd like to see only those variables that R classifies as chr. Is there a path to doing so?
str(mtvtn, list.len = ncol(mtvtn))
I tried the following as well to no avail.
str(mtvtn, list = is.character(mtvtn))
Is this what you are after?