[R] Creating named lists

Linlin Yan yanlinlin82 at gmail.com
Fri Mar 12 10:37:10 CET 2010


Did you mean this:

> n <- c('a', 'b')
> structure(list(1, 2), names = n)
$a
[1] 1

$b
[1] 2


On Fri, Mar 12, 2010 at 5:28 PM, Rune Schjellerup Philosof
<rphilosof at health.sdu.dk> wrote:
> I often find myself making lists similar to this
> list(var1=var1, var2=var2)
>
> It doesn't seem list has an option, to make it use the name of the
> variable as name in the list.
> Is there another function that does this?
>
> --
> Med venlig hilsen
>
> Rune Schjellerup Philosof
> Ph.d-stipendiat, Forskningsenheden for Biostatistik
>
> Telefon: 6550 3607
> E-mail:  rphilosof at health.sdu.dk
> Adresse: J.B. Winsløwsvej 9, 5000 Odense C
>
> SYDDANSK UNIVERSITET
> _______________________________________________________________
> * Campusvej 55 * 5230 * Odense M * 6550 1000 * www.sdu.dk
>
> ______________________________________________
> R-help at 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.
>



More information about the R-help mailing list