Displaying 1 result from an estimated 1 matches for "geu1".
Did you mean:
gep1
2011 Oct 02
2
getting list of data.frame names
Dear R People:
This is probably a very simple question. I know that if I want to get
a list of the classes of the objects in the workspace, I can do this:
> sapply(ls(), function(x)class(get(x)))
a a1.df b d
"list" "data.frame" "integer" "numeric"
Now I want to get just the data frames.
>