jax.scipy.stats.t.pdf

Contents

jax.scipy.stats.t.pdf#

jax.scipy.stats.t.pdf(x, df, loc=0, scale=1)[source]#

Student’s T probability distribution function.

JAX implementation of scipy.stats.t pdf.

The Student’s T probability distribution function is given by

\[f(x, \nu) = \frac{\Gamma((\nu + 1)/2)}{\sqrt{\pi\nu}\Gamma(\nu/2)}(1 + x^2/\nu)^{(\nu+1)/2}\]

Where \(\Gamma\) is the gamma() function, and \(\nu > 0\) is the degrees of freedom (JAX follows the scipy convention of naming this df).

Parameters:
Returns:

array

Return type:

Array