Message-ID: <4379D510.8050203@gmail.com>
Date: 2005-11-15T12:31:12Z
From: Muhammad Subianto
Subject: How can I put the object name in list
In-Reply-To: <4379CC74.2070503@gmail.com>
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
>