Method: Distribution::T::Statistics2_#cdf
- Defined in:
- lib/distribution/t/statistics2.rb
#cdf(x, k) ⇒ Object
T cumulative distribution function (cdf).
Returns the integral of t-distribution with n degrees of freedom over (-Infty, x].
13 14 15 |
# File 'lib/distribution/t/statistics2.rb', line 13 def cdf(x, k) Statistics2.tdist(k, x) end |