BenchDesign {SummarizedBenchmark} | R Documentation |
Initializes a new BenchDesign object for benchmarking methods.
BenchDesign(bdata = NULL)
bdata |
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(df)