get_t_cdf

Function get_t_cdf 

Source
pub fn get_t_cdf(t: f64, df: f64) -> f64
Expand description

Computes the Student’s t-distribution cumulative distribution function.

Returns P(T ≤ t) for a t-distribution with the given degrees of freedom.

§Arguments

  • t - t-statistic value
  • df - Degrees of freedom

§Returns

The CDF value, or NaN if domain check fails.