Re: [R] Speed of accessing list element by index or name

2009-12-03 Thread Jorge Ivan Velez
One way to answer it would be comparing: system.time(replicate(10^5, l[[1]] ) ) system.time(replicate(10^5, l[['name']] ) ) HTH, Jorge On Fri, Dec 4, 2009 at 1:01 AM, Peng Yu <> wrote: > I'm wondering if the speed of accessing list element by index is the > same as that of accessing list eleme

Re: [R] Speed of accessing list element by index or name

2009-12-03 Thread Sharpie
pengyu.ut wrote: > > I'm wondering if the speed of accessing list element by index is the > same as that of accessing list element by name. > > l[[1]] > l[['name']] > Have you tried answering this question yourself using the system.time() function? -- View this message in context: http://n4

[R] Speed of accessing list element by index or name

2009-12-03 Thread Peng Yu
I'm wondering if the speed of accessing list element by index is the same as that of accessing list element by name. l[[1]] l[['name']] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide ht