The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

OP::Enum::Consol - Series data consolidation type enumeration

DESCRIPTION

Specifies datapoint consolidation methods

SYNOPSIS

  use OP::Enum::Consol;

CONSTANTS

  • Average

    Consolidate multiple values into a single value by averaging

  • Median

    Select the median from a set of multiple values

  • Min

    Select the minimum from a set of multiple values

  • Max

    Select the maximum from a set of multiple values

  • Sum

    Consolidate multiple values into a single value by adding

  • First

    Select the first (oldest) from a set of multiple values

  • Last

    Select the last (newest) from a set of multiple values

  • Random

    Select randomly from a set of multiple values

SEE ALSO

OP::Enum, OP::Persistence

This file is part of OP.