summary.benchmark_tbl {CellBench} | R Documentation |
Summary of benchmark_tbl
## S3 method for class 'benchmark_tbl' summary(object, ...)
object |
the benchmark_tbl to be summarised |
... |
additional arguments affecting the summary produced. |
None
# 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)