[R] how to convert list into a vector

David Winsemius dwinsemius at comcast.net
Thu Oct 8 17:49:27 CEST 2009


On Oct 8, 2009, at 11:13 AM, delnatan wrote:

>
> Hi ,
>
> I want to convert a my list:
>
>> myList
> [[1]]
> [1] 1 2 3 4 5
> [[2]]
> [1] 6 7 8
> [[3]]
> [1] 9 10 11
>
> into something like c(1,2,3,4,5,6,7,8,9,10,11)

?unlist

>
> I realized that this is possible by
>
>> c(do.call("cbind",myList))
>
> But only when list[[1]] through list[[3] have equal length of  
> vectors within
> them
>
> Any ideas?


David Winsemius, MD
Heritage Laboratories
West Hartford, CT




More information about the R-help mailing list