summary.benchmark_tbl: Summary of benchmark_tbl

View source: R/benchmark_tbl_methods.R

summary.benchmark_tblR Documentation

Summary of benchmark_tbl

Description

Summary of benchmark_tbl

Usage

## 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

# 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)

Shians/CellBench documentation built on Oct. 16, 2023, 7:54 a.m.