Benchmarking: using `expression` `quote` or neither
Generally, when I run benchmarks, I wrap my statements in expression . Recently, it was suggested to either (a) not do so or (b) use quote instead of expression. I find two advantages to wrapping the statements: compared to entire statements, they are more easily swapped out. I can lapply over a list of inputs, and compare those results However, in exploring the different methods, I noticed a discrepency between the three methods (wrapping in expression , wrapping in quote , or not wrapping at all) The question is: Why the discrepency? (it appears that wrapping in quote does not actually