TheΒ CumeDist function returns the cumulative distribution of an input column. For each row value in the input column, the cumulative distribution will give the probability that other values within the input column will be less than or equal to that value, when sorted ascending.

When sorted descending, the cumulative distribution gives the probability that other values within the input column will be greater than or equal to each row value.Β The output of this function is a number between 0 and 1.

Syntax

CumeDist([Column], direction)

Function Arguments:

  • [Column] (required) - The column to use to find the cumulative distribution.
  • direction (optional) - The direction to sort the input column. Enter β€œasc” to sort ascending and β€œdesc” to sort descending. Default sorting is ascending.

Example

CumeDist([Average Close Price])

A table contains monthly averages for the close prices of a stock.Β The CumeDist function can be used to find the cumulative distribution of these average close prices.

Screenshot of results showing average close prices and cumulative distributions per month.

The percentage refers to the probability that other close prices will be less than or equal to the close price.Β  For the month 2012-03, there is a 26.30% chance that other close prices will be less than or equal to 38.18.

CumeDist([Average Close Prices], "desc")

To find the probability that values in the column will be greater than or equal to the average monthly row price, add "desc" parameter.


Related resources