Description Usage Arguments Value Author(s) See Also Examples
Initializes a new SimpleList of BenchDesign method (BDMethod
) objects.
Similar to BDMethod
objects, BDMethodList
typically do not need to be
directly constructed. Because the list of methods is only useful as art of a
BenchDesign
object, it is more common to simply manipulate the
list of methods through calls to the corresponding BenchDesign
, e.g.
addMethod
to add a new method to the list.
The constructor can also be used to access the BDMethodList
list
of methods in a BenchDesign
object.
1 2 3 4 5 6 7 8 9 10 | BDMethodList(..., x = NULL)
## S4 method for signature 'ANY'
BDMethodList(..., x = NULL)
## S4 method for signature 'BenchDesign'
BDMethodList(..., x = NULL)
## S4 method for signature 'SummarizedBenchmark'
BDMethodList(..., x = NULL)
|
... |
a named list of |
x |
a |
BDMethodList object
Patrick Kimes
BDMethodList-class
, BenchDesign
, BDMethod
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## construct an empty list
bdml <- BDMethodList()
## construct a list with BDMethod objects
bdml <- BDMethodList(m_method = BDMethod(base::mean),
s_method = BDMethod(function(x) { x^2 }))
bdml
## construct a BenchDesign with a BDMethodList
bd <- BenchDesign(methods = bdml)
## access the BDMethodList in the BenchDesign
BDMethodList(bd)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.