[R] How can I put the object name in list
Muhammad Subianto
subianto at gmail.com
Tue Nov 15 13:31:12 CET 2005
Yes, thanks you very much.
Regards, Muhammad Subianto
> HEC.list <- list(Hair=Hair,Eye=Eye,Sex=Sex)
> ?list
On this day 15/11/2005 12:54 PM, Muhammad Subianto wrote:
> Dear R-helpers,
> How can I put the object name in list.
>
> > Hair <- c("Black","Brown","Red","Blond")
> > Eye <- c("Brown","Blue","Hazel","Green")
> > Sex <- c("Male","Female")
> >
> > HEC.list <- list(Hair,Eye,Sex)
> > HEC.list
> [[1]]
> [1] "Black" "Brown" "Red" "Blond"
>
> [[2]]
> [1] "Brown" "Blue" "Hazel" "Green"
>
> [[3]]
> [1] "Male" "Female"
> >
>
> I expect the result like this,
>
> $Hair
> [1] "Black" "Brown" "Red" "Blond"
>
> $Eye
> [1] "Brown" "Blue" "Hazel" "Green"
>
> $Sex
> [1] "Male" "Female"
>
> Best, Muhammad Subianto
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
>
More information about the R-help
mailing list