tidyUpMetrics {SummarizedBenchmark} | R Documentation |
This function takes as input a SummarizedBenchmark
object, extracts the
estimated performance metrics and reformats them into a long-formated data frame.
tidyUpMetrics(object)
object |
A |
A tidy data.frame
Alejandro Reyes
data( "sb", package="SummarizedBenchmark" ) sb <- estimateMetricsForAssay( sb, assay="qvalue", evalMetric="rejections", evalFunction=function( query, truth, alpha=0.1 ){ sum( query < alpha ) }, addColData=TRUE ) tidyUpMetrics( sb )