Skip to content

Directory-like data organisation w/ environments?

2 messages · Liaw, Andy, Christoph Lange

#
Would attaching a nested list be close to what you want?  E.g.,
[,1] [,2]
[1,]    0    0
[2,]    0    0
[3,]    0    0
[,1] [,2]
[1,]    1    3
[2,]    2    4

You should be aware that the global environment is #1 on the search list,
and you can't attach anything else at position 1.  So if you have something
in the workspace that has the same name as in what you attach()'ed, the one
in the workspace is seen.

HTH,
Andy
------------------------------------------------------------------------------
Notice:  This e-mail message, together with any attachments,...{{dropped}}
#
(Reply to Liaw, Andy)
Well, near to what I want. But I dream of a way to organize my data in
this tree-like structure as e.g. in Mathlab. - I'm just getting lost
in my data :-(

-cl