Click or drag to resize

Continious Univariate

A continuous univariate distribution is a probability distribution of a single variable characterized by a probability density function. If X is a continuous random variable, then it has a probability density function ƒ(x), and therefore its probability to fall into a given interval, say [a, b] is given by the integral

DContinious

Among the most well-known continuous probability distributions that are used for statistical modeling are:

This topic contains the following sections:

Methods

An abstract class CUDistribution represents base continuous univariate distribution.

All subclasses inherit from this class the following methods:

Method

Description

Performance

sample

Generates random variable sample.

methodSample

Generate series of random variable samples.

In place:

methodSample

methodSample

Returning result:

methodSample

pdf

Probability density function.

DContinious Pmf

where F(x) is a cumulative distribution function.

methodPdf(Double)

cdf

Cumulative distribution function.

DContinious Cdf

methodCdf(Double)

inverse cdf

Inverse cumulative distribution function.

DInv Cdf

Is useful for quantile generation. Function will return random variable value such that probability that distribution sample will get value less than or equal to returned value is equal to specified probability.

methodInverseCdf(Double)

Properties

All subclasses inherit from this class the following properties:

Property

Description

Performance

mean

Mean of the distribution.

PropertyMean

median

Median is the numerical value separating the higher half of a probability distribution, from the lower half.

PropertyMedian

mode

The value that occurs most frequently in a probability distribution.

PropertyMode

kurtosis

A measure of the "peakedness" of the probability distribution of a real-valued random variable.

DKurtosis

PropertyKurtosis

skewness

A measure of the asymmetry of the probability distribution.

DSkewness

PropertySkewness

entropy

A measure of the uncertainty associated with a random variable.

PropertyEntropy

variance

A measure of how far a set of numbers are spread out from each other.

DVariance

PropertyVariance

standard deviation

A measure of variability or diversity.

DStd Dev

PropertyStandardDeviation

See Also