[R] Data structure in R

2007-08-12 Thread adschai
Hi, I have a question around how to build data structure in R. I have to implement a tree structure of data. I'm wondering if R already has something like a tree where I can extend from or I need to start from scratch. If so, what would be the most effective way to represent parent and child

Re: [R] Data structure in R

2007-08-12 Thread J. Burgos
Hi Adschai, R has a class for tree-like structures. See the 'tree' package. Julian On Mon, 13 Aug 2007, [EMAIL PROTECTED] wrote: Hi, I have a question around how to build data structure in R. I have to implement a tree structure of data. I'm wondering if R already has something like