[R] Is there a data/variable explorer in R?

David Winsemius dwinsemius at comcast.net
Wed Aug 22 22:11:33 CEST 2012


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




More information about the R-help mailing list