probabilityPoints

Represents a list of ProbPoint objects that encapsulates the value, probability, and cumulative probability information for a discrete empirical random variable.

This property computes the list based on the set of values for the random variable and the corresponding cumulative distribution function values. Each ProbPoint contains:

  • value: A particular value of the random variable.

  • prob: The probability of the value occurring within the range defined by the cumulative distribution function.

  • cumProb: The cumulative probability up to and including the value.

The property is read-only and is computed dynamically upon access.

The probabilities and cumulative probabilities are validated to ensure they fall within the range 0, 1.

Return

A list of ProbPoint objects that define the probability distribution for the random variable.