| dropMethod {SummarizedBenchmark} | R Documentation |
Takes a BenchDesign object and the name of an
existing method
and returns a reduced BenchDesign object with the
method removed.
dropMethod(bd, label)
bd |
|
label |
Character name of method. |
Modified BenchDesign object with
specified method dropped.
Patrick Kimes
modifyMethod, expandMethod, addMethod
## empty BenchDesign
bench <- BenchDesign()
## add methods
bench <- addMethod(bench, label = "bonf", func = p.adjust,
params = rlang::quos(p = pval, method = "bonferroni"))
bench <- addMethod(bench, label = "BH", func = p.adjust,
params = rlang::quos(p = pval, method = "BH"))
BDMethodList(bench)
## remove methods
bench <- dropMethod(bench, label = "bonf")
BDMethodList(bench)