Beispiel #1
0
class CumulativeMin(CumulativeOp):
    """
    Cumulative min. Requires an order window.
    """

    output_type = rules.array_output(_min_max_output_rule)
Beispiel #2
0
class CumulativeSum(CumulativeOp):
    """
    Cumulative sum. Requires an order window.
    """

    output_type = rules.array_output(_sum_output_type)
Beispiel #3
0
class CumulativeMean(CumulativeOp):
    """
    Cumulative mean. Requires an order window.
    """

    output_type = rules.array_output(_mean_output_type)
Beispiel #4
0
class CumulativeAll(CumulativeOp):
    """
    Cumulative all
    """

    output_type = rules.array_output(lambda self: 'boolean')