press() is used to run bench::mark() across a grid of parameters and then press the results together.

The parameters you want to set are given as named arguments and a grid of all possible combinations is automatically created.

The code to setup and benchmark is given by one unnamed expression (often delimited by \{).

If replicates are desired a dummy variable can be used, e.g. rep = 1:5 for replicates.

press(..., .grid = NULL)

Arguments

...

If named, parameters to define, if unnamed the expression to run. Only one unnamed expression is permitted.

.grid

A pre-build grid of values to use, typically a data.frame or tibble. This is useful if you only want to use a subset of all possible combinations.

Examples

# Helper function to create a simple data.frame of the specified dimensions create_df <- function(rows, cols) { as.data.frame(setNames( replicate(cols, runif(rows, 1, 1000), simplify = FALSE), rep_len(c("x", letters), cols))) } # Run 4 data sizes across 3 samples with 2 replicates (24 total benchmarks) press( rows = c(1000, 10000), cols = c(10, 100), rep = 1:2, { dat <- create_df(rows, cols) bench::mark( min_time = .05, bracket = dat[dat$x > 500, ], which = dat[which(dat$x > 500), ], subset = subset(dat, x > 500) ) } )
#> Running with: #> rows cols rep
#> 1 1000 10 1
#> 2 10000 10 1
#> 3 1000 100 1
#> 4 10000 100 1
#> 5 1000 10 2
#> 6 10000 10 2
#> 7 1000 100 2
#> 8 10000 100 2
#> # A tibble: 24 x 16 #> expression rows cols rep min median `itr/sec` mem_alloc `gc/sec` #> <bch:expr> <dbl> <dbl> <int> <bch:tm> <bch:tm> <dbl> <bch:byt> <dbl> #> 1 bracket 1000 10 1 155.72µs 171.19µs 4069. NA 22.0 #> 2 which 1000 10 1 272.44µs 309.08µs 3235. NA 0 #> 3 subset 1000 10 1 361.56µs 434.31µs 2266. NA 23.6 #> 4 bracket 10000 10 1 1.43ms 1.46ms 685. NA 23.6 #> 5 which 10000 10 1 844.62µs 870.29µs 1145. NA 22.9 #> 6 subset 10000 10 1 1.1ms 1.15ms 797. NA 53.2 #> 7 bracket 1000 100 1 1.15ms 1.23ms 811. NA 47.7 #> 8 which 1000 100 1 931.92µs 996.7µs 995. NA 0 #> 9 subset 1000 100 1 1.19ms 1.25ms 794. NA 52.9 #> 10 bracket 10000 100 1 7.9ms 8.02ms 124. NA 82.8 #> # … with 14 more rows, and 7 more variables: n_itr <int>, n_gc <dbl>, #> # total_time <bch:tm>, result <list>, memory <list>, time <list>, gc <list>