Return the cumulative probability to the right of (above) the given point.

Namespace: Meta.Numerics.Statistics.Distributions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public override double RightProbability(
	double x
)
Public Overrides Function RightProbability ( _
	x As Double _
) As Double
public:
virtual double RightProbability(
	double x
) override
abstract RightProbability : 
        x : float -> float 
override RightProbability : 
        x : float -> float 

Parameters

x
Double
The reference point.

Return Value

The integrated probability 1-P(x1) to obtain a result above the reference point.

Remarks

In survival analysis, the right probability function is commonly called the survival function, because it gives the fraction of the population remaining after the given time.

See Also