We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example here:
R6/vignettes/Performance.Rmd
Lines 712 to 723 in 5078678
is too trivial to show the actual differences. A better example would be
lst <- as.list(sample(letters)) names(lst) <- unlist(lst) env <- new.env() for (x in lst) assign(x, x, envir=env) mb_summary(microbenchmark( lst = lst$x, env = env$x, lst[['x']], env[['x']] ))
which gives in my computer:
name median 1 lst 0.6345 2 env 0.2850 3 lst[["x"]] 0.4085 4 env[["x"]] 0.1960
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example here:
R6/vignettes/Performance.Rmd
Lines 712 to 723 in 5078678
is too trivial to show the actual differences. A better example would be
which gives in my computer:
The text was updated successfully, but these errors were encountered: