On 19/03/2008, at 4:39 PM, Erin Hodgess wrote: > Dear R People: > > I want to get the class of all of the objects in my directory. > > I was trying: > > do.call(class,list=ls()) > > but got an "unused argument error". > > I'm sure it's simple, but I'm just not seeing it. > > Any help would be much appreciated. > > Sincerely, > Erin
Too easy!!! sapply(ls(),function(x){class(get(x))}) cheers, Rolf ###################################################################### Attention:\ This e-mail message is privileged and confid...{{dropped:9}} ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.