performanceMetrics {SummarizedBenchmark} | R Documentation |
Accessor and replacement functions for the slot 'performanceMetrics' of a SummarizedBenchmark object.
performanceMetrics(object, ...) ## S4 method for signature 'SummarizedBenchmark' performanceMetrics(object, assay = NULL) performanceMetrics(object, ...) <- value ## S4 replacement method for signature 'SummarizedBenchmark,SimpleList' performanceMetrics(object) <- value
object |
a |
... |
Futher arguments, perhaps used by methods |
assay |
A character string indicating an assay name |
value |
A SimpleList of the same length as the number of assays |
A SimpleList with one element for each assay. Each element of the list contains a list of performance functions.
Alejandro Reyes
addPerformanceMetric
, estimatePerformanceMetrics
data( sb ) performanceMetrics( sb ) performanceMetrics( sb, assay="qvalue" ) performanceMetrics( sb ) <- SimpleList( qvalue=list(), logFC=list() )