Takes a BenchDesign object and the name of an existing method and returns a reduced BenchDesign object with the method removed.

dropMethod(bd, label)

Arguments

bd

BenchDesign object.

label

Character name of method.

Value

Modified BenchDesign object with specified method dropped.

See also

Examples

## 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)
#> BenchDesign Method List (BDMethodList) --------------------- #> list of 2 methods #> method: bonf; func: p.adjust #> method: BH; func: p.adjust
## remove methods bench <- dropMethod(bench, label = "bonf") BDMethodList(bench)
#> BenchDesign Method List (BDMethodList) --------------------- #> list of 1 method #> method: BH; func: p.adjust