ccdf#

ccdf(observations, normalised=True)[source]#

Returns x coordinates and y coordinates for a ccdf (complementary cumulative density function) from a list of observations.

Parameters:
  • observations (list) – list of observations, should be numeric

  • normalised (bool,optional) – Defaults to True. If true, y coordinates normalised such that y is the probability of finding a value greater than than or equal to x, if false y is the number of observations greater than or equal to x.

Returns:

x and y coordinates for the cdf

Return type:

Tuple[np.ndarray, np.ndarray]