BenchDesign {SummarizedBenchmark} | R Documentation |
Initializes a new BenchDesign object for benchmarking methods.
BenchDesign(..., methods = NULL, data = NULL) ## S4 method for signature 'ANY' BenchDesign(..., methods = NULL, data = NULL)
... |
named set of |
methods |
named set of |
data |
optional data.frame or other list object to be used in the benchmark. (default = NULL) |
BenchDesign
object.
Patrick Kimes
## with no input bd <- BenchDesign() ## with toy data.frame df <- data.frame(x1 = rnorm(20), y1 = rnorm(20)) bd <- BenchDesign(data = df)