How can I put the object name in list
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 = c("Black","Brown","Red","Blond"), Eye =
c("Brown","Blue","Hazel","Green"), Sex = c("Male","Female"))
Best,
Jim
> > 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
James W. MacDonald University of Michigan Affymetrix and cDNA Microarray Core 1500 E Medical Center Drive Ann Arbor MI 48109 734-647-5623 ********************************************************** Electronic Mail is not secure, may not be read every day, and should not be used for urgent or sensitive issues.