Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Outliers: cases where the values are between 1.5 and 3 box-lengths from the 75th percentile or 25th percentile.
Farout values: cases where the values are more than 3 box-lengths from the 75th percentile or 25th percentile.

Config example:

Code Block
xml
xml
Wiki Markup
{code}
<statisticalFunctions>
               <statisticalFunction function="boxPlot">
                              <timeStep id="daily"/>
                              <timeStep id="weekly"/>
                              <timeStep id="monthly"/>
                              <timeStep id="seasons"/>
               </statisticalFunction>
</statisticalFunctions>
{code}

Calendar aggregation

Aggregation by calendar day (00.00h-24.00h)

Config example:

{code} {/code}

Moving average

Moving average where the value is stamped at the end of each averaging period.

Config example:

Code Block
xml
xml
<statisticalFunctions>
		<statisticalFunction function="movingAverage">
			<movingAccumulationTimeSpan unit="hour" multiplier="1"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="3"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="6"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="12"/>
		</statisticalFunction>

Central moving average

Moving average where the value is stamped in the middle of each averaging period.

Config example:

Code Block
xml
xml
<statisticalFunctions>
		<statisticalFunction function="centralMovingAverage">
			<movingAccumulationTimeSpan unit="hour" multiplier="1"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="3"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="6"/>
			<movingAccumulationTimeSpan unit="hour" multiplier="12"/>
		</statisticalFunction>

Display lows below value & Display peaks above value

...