stats_cdf_t

(PECL stats >= 1.0.0)

stats_cdf_tCalcula un parámetro de la distribución t en función de los otros valores

Descripción

stats_cdf_t(float $par1, float $par2, int $which): float

Devuelve la función de distribución acumulativa, su inversa, o uno de los parámetros, de la distribución t. El tipo del valor de retorno y los parámetros (par1 y par2) son determinados por which.

La siguiente tabla lista el valor de retorno y los parámetros por which. CDF, x, y nu designan la función de distribución acumulativa, el valor de la variable aleatoria, y los grados de libertad de la distribución t, respectivamente.

Valor de retorno y parámetros
which Valor de retorno par1 par2
1 CDF x nu
2 x CDF nu
3 nu x CDF

Parámetros

par1

El primer parámetro

par2

El segundo parámetro

which

El flag para determinar qué debe ser calculado

Valores devueltos

Devuelve CDF, x, o nu, determinado por which.

add a note

User Contributed Notes 2 notes

up
3
Brian
14 years ago
In order to match the output of this function with Excel's TDIST function, you must take 1 - the value. For example, for a two-tailed T-distribution for x=4 and degrees of freedom=2, the formula would be:

(1 - stats_cdf_t(4, 2, 1)) * 2

For a single tail, do not include the multiply by 2 portion.
up
-4
Anonymous
12 years ago
Input and return values of stats_cdf_t depends on the $which-parameter:
<?php
function get_t_p($t, $df){
return
stats_cdf_t($t, $df, 1);
}
function
get_t_t($p, $df){
return
stats_cdf_t($p, $df, 2);
}
function
get_t_df($p, $t){
return
stats_cdf_t($p, $t, 3);
}
?>
To Top