Skip to main content
Version: Java (Groovy)

RollingMax

RollingMax calculates a window-based rolling maximum in an updateBy table operation. The rolling maximum can be calculated using forward and/or backward windows.

Syntax

RollingMax(revTicks, fwdTicks, pairs)
RollingMax(revTicks, pairs)
RollingMax(timestampCol, revTime, fwdTime, pairs)
RollingMax(timestampCol, revTime, pairs)
RollingMax(timestampCol, revDuration, pairs)
RollingMax(timestampCol, revDuration, fwdDuration, pairs)

Parameters

ParameterTypeDescription
revTickslong

The look-behind window size in ticks (rows). If positive, it defines the maximum number of rows before the current row that will be used. If negative, it defines the minimum number of rows after the current row that will be used.

fwdTickslong

The look-forward window size in ticks (rows). If positive, it defines the maximum number of rows after the current row that will be used. If negative, it defines the minimum number of rows before the current row that will be used.

pairsString...

The input/output column name pairs.

timestampColString

The name of the timestamp column.

revDurationDuration

The look-behind window size in Duration.

fwdDurationDuration

The look-forward window size in Duration.

revTimelong

The look-behind window size in nanoseconds.

fwdTimelong

The look-forward window size in nanoseconds.

Returns

An UpdateByOperation to be used in an updateBy table operation.

Examples

The following example performs an updateBy on the source table using four row-based RollingMax operations. Each of the last three operations uses different revTicks and fwdTicks values to show how they affect the output.

rng = new Random()

source = emptyTable(10).update("X = rng.nextInt(25)")

opRollMax = RollingMax(3, "RollingMaximum = X")
opPrior = RollingMax(3, -1, "WindowPrior = X")
opPosterior = RollingMax(-1, 3, "WindowPosterior = X")
opMiddle = RollingMax(1, 1, "WindowMiddle = X")

result = source.updateBy([opRollMax, opPrior, opPosterior, opMiddle])