On Aug 22, 2012, at 12:30 PM, Michael wrote:
Is there a data/variable explorer in R?
Hi all,
I am inspecting a complex variable which has lists inside lists...
Is there a data-explorer that can help me view the structure and
content of
such variables?
In my Mac GUI there is a Workspace Browser but it's fairly limited in
that it only lets you see the first level down for list objects. Most
people use the str function for that purpose:
> ddd <- list(a=list(b=list(c=list)))
> str(ddd)
List of 1
$ a:List of 1
..$ b:List of 1
.. ..$ c:function (...)
--
David Winsemius, MD
Alameda, CA, USA
______________________________________________
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.