Summarizers¶
The summarizer classes contains the functions to calculate a summary value
for the given time series.
BuiltInSummarizer¶
-
class
performance.driver.core.classes.summarizer.BuiltInSummarizer(config)[source]¶ A proxy class that calls the built-in summarizer functions
# Can be used without configuration, like so: metrics: - name: metric ... summarize: [mean, min, ] # Or with configuration like so: metrics: - name: metric ... summarize: - class @mean # The name of the metric in the plots name: mean # [Optional] Set to `yes` to include outliers outliers: no
The following built-in summarizers are available:
mean: Calculate the mean value of the timeseriesmean_err: Calculate the mean value, including statistical errorsmin: Find the minimum valuemax: Find the maximum valuesum: Calculate the sum of all timeseriesmedian: Calculate the median of the timeseriesmode: Calculate the mode of the timeseriesvariance: Calculate the variance of the timeseriessdeviation: Calculate the standard deviation of the timeseries