sapply(ls(),get) works fine. Thanks.

ps: the as.list and the eapply suggestions didn't work.

On Mon, Jan 3, 2011 at 3:56 PM, Jorge Ivan Velez
<jorgeivanve...@gmail.com>wrote:

> Hi Eduardo,
>
> Try
>
> r <- ls()
> result <- sapply(r, get)
> result
>
> HTH,
> Jorge
>
>
> On Mon, Jan 3, 2011 at 12:25 PM, Eduardo de Oliveira Horta <> wrote:
>
>> Hello there,
>>
>> any ideas on how to save all the objects on my workspace inside a list
>> object?
>>
>> For example, say my workspace is as follows
>> ls()
>> [1] "x" "y" "z"
>>
>> and suppose I want to put these objects inside a list object, say
>>
>> object.list <- list()
>>
>> without having to explicitly write down their names as in
>>
>> object.list$x = x
>> object.list$y = y
>> object.list$z = z
>>
>> Is this possible?
>>
>> Thanks in advance,
>>
>> Eduardo Horta
>>
>>        [[alternative HTML version deleted]]
>>
>> ______________________________________________
>> 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.
>>
>
>

        [[alternative HTML version deleted]]

______________________________________________
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.

Reply via email to