BDMethod<- {SummarizedBenchmark} | R Documentation |
Adds, replaces or removes a named BDMethod
method
in a BDMethodList
or
BenchDesign
object with a specified
BDMethod
object.
An existing method can be removed by setting the value to NULL
.
BDMethod(x, i) <- value ## S4 replacement method for signature 'BDMethodList,character,BDMethod' BDMethod(x, i) <- value ## S4 replacement method for signature 'BDMethodList,character,'NULL'' BDMethod(x, i) <- value ## S4 replacement method for signature 'BenchDesign,character,BDMethod' BDMethod(x, i) <- value ## S4 replacement method for signature 'BenchDesign,character,'NULL'' BDMethod(x, i) <- value
x |
|
i |
character name of method. |
value |
|
modified BenchDesign object
Patrick Kimes
bd <- BenchDesign() BDMethod(bd, "avg") <- BDMethod(x = base::mean) bd