Skip to content

Converting an environment to a list: mget vs. as.list

3 messages · Simon Urbanek, Hadley Wickham

#
On Apr 22, 2013, at 9:14 AM, Hadley Wickham wrote:

            
I'd say the more interesting part is that ls() is so "slow" if you use the ambiguous "name" argument instead of the direct "envir" one:
Unit: nanoseconds
                      expr   min    lq median    uq   max neval
                   ls(env) 12445 13422  14450 15144 37505   100
           ls(envir = env)  1741  2020   2331  2643 15574   100
 .Internal(ls(env, FALSE))   631   730    828   910  4157   100

Note that your objects are so small that you cannot distinguish constant cost (e.g. just the method dispatch on as.list) - and that is in fact what causes the difference - not the actual conversion:
Unit: microseconds
                     expr min  lq median  uq  max neval
             as.list(env) 4.8 5.5    5.9 6.1 33.1   100
 as.list.environment(env) 1.4 1.9    2.1 2.4  4.8   100
   mget(c("x", "y"), env) 2.6 3.1    3.4 3.7 37.5   100

So be careful with general statements on very small run times. Suddenly it's no longer surprising ...

Cheers,
S
#
That is interesting!
That's a good point, but the first example was quite a bit larger, and
hence the impact of S3 dispatch slightly less:

env <- environment(plot)
names <- ls(env)

microbenchmark(
  as.list(env),
  as.list.environment(env),
  mget(names, env))

                     expr min lq median uq max neval
             as.list(env)  42 49     51 53 140   100
 as.list.environment(env)  39 44     46 48 117   100
         mget(names, env)  33 35     37 38  83   100

so mget still wins in that case.

Hadley

--
Chief Scientist, RStudio
http://had.co.nz/