ConfidenceInterval Module

Functions and values

Function or value Description

ci ciLevel sample

Full Usage: ci ciLevel sample

Parameters:
    ciLevel : float -
    sample : seq<float> -

Returns: Interval<float>

The confidence interval is calculated by using a t distribution. Common ciLevel = 0.95

ciLevel : float

sample : seq<float>

Returns: Interval<float>

Example

ciDeviation ciLevel sample

Full Usage: ciDeviation ciLevel sample

Parameters:
    ciLevel : float -
    sample : seq<float> -

Returns: float

The deviation from the sample mean is calculated by using a t distribution. Common ciLevel = 0.95

ciLevel : float

sample : seq<float>

Returns: float

Example