summary.benchmark_tbl: Summary of benchmark_tbl

Description Usage Arguments Value Examples

View source: R/benchmark_tbl_methods.R

Description

Summary of benchmark_tbl

Usage

1
2
## S3 method for class 'benchmark_tbl'
summary(object, ...)

Arguments

object

the benchmark_tbl to be summarised

...

additional arguments affecting the summary produced.

Value

None

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
# list of data
datasets <- list(
    set1 = rnorm(500, mean = 2, sd = 1),
    set2 = rnorm(500, mean = 1, sd = 2)
)

# list of functions
add_noise <- list(
    none = identity,
    add_bias = function(x) { x + 1 }
)

res <- apply_methods(datasets, add_noise)
summary(res)

CellBench documentation built on Nov. 8, 2020, 5:11 p.m.