Description Usage Arguments Value Author(s) See Also Examples
Takes a BenchDesign
object and the name of an
existing method
and returns a reduced BenchDesign
object with the
method removed.
1 | dropMethod(bd, label)
|
bd |
|
label |
Character name of method. |
Modified BenchDesign
object with
specified method dropped.
Patrick Kimes
modifyMethod
, expandMethod
, addMethod
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.