printMethod {SummarizedBenchmark} | R Documentation |
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.
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
Patrick Kimes
## 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)