View source: R/benchmark_tbl_methods.R
summary.benchmark_tbl | 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.