Description Usage Arguments Value Author(s) See Also Examples
Print out details about a method included in
the BenchDesign. The printMethods
function is just a wrapper
to call printMethod
on all methods in the BenchDesign.
1 2 3 | printMethod(bd, n = NULL)
printMethods(bd)
|
bd |
BenchDesign object. |
n |
name of a method in the BenchDesign to show. |
Brief description is returned to console.
Patrick Kimes
BDMethod-class
, BenchDesign-class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## create empty BenchDesign
bench <- BenchDesign()
## currently no methods
printMethods(bench)
## add method
bench <- addMethod(bench, label = "method_a", p.adjust)
bench <- addMethod(bench, label = "method_b", qvalue::qvalue)
## show a single method
printMethod(bench, "method_a")
## show all methods
printMethods(bench)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.