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);
}
?>
stats_cdf_t
(PECL stats >= 1.0.0)
stats_cdf_t — T 分布のパラメータのいずれかを、その他のパラメータの値から計算する
説明
float stats_cdf_t
( float
$par1
, float $par2
, int $which
)警告
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
パラメータ
-
par1 -
-
par2 -
-
which -
返り値
Anonymous
12-Apr-2012 07:30
Brian
14-Oct-2010 02:14
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.
