PHP 클래스 MathPHP\Probability\Distribution\Table\TDistribution

Tables for one sided and two sided, Initial index is degrees of freedom (ν). Second index is confidence level precentage, or alpha value (α). https://en.wikipedia.org/wiki/Student%27s_t-distribution#Table_of_selected_values This table is provided only for completeness. It is common for statistics textbooks to include this table, so this library does as well. It is better to use the StudentT distribution functions when a t value is required.
파일 보기 프로젝트 열기: markrogoyski/math-php

공개 메소드들

메소드 설명
getOneSidedTValueFromAlpha ( string , string ) : float Get one-sided t value using alpha
getOneSidedTValueFromConfidenceLevel ( string , string $cl ) : float Get one-sided t value using confidence level percentage
getTwoSidedTValueFromAlpha ( string , string ) : float Get two-sided t value using alpha
getTwoSidedTValueFromConfidenceLevel ( string , string $cl ) : float Get two-sided t value using confidence level percentage

메소드 상세

getOneSidedTValueFromAlpha() 공개 정적인 메소드

Get one-sided t value using alpha
public static getOneSidedTValueFromAlpha ( string , string ) : float
string degrees of freedom
string alpha
리턴 float t value

getOneSidedTValueFromConfidenceLevel() 공개 정적인 메소드

Get one-sided t value using confidence level percentage
public static getOneSidedTValueFromConfidenceLevel ( string , string $cl ) : float
string degrees of freedom
$cl string confidence level percentage
리턴 float t value

getTwoSidedTValueFromAlpha() 공개 정적인 메소드

Get two-sided t value using alpha
public static getTwoSidedTValueFromAlpha ( string , string ) : float
string degrees of freedom
string alpha
리턴 float t value

getTwoSidedTValueFromConfidenceLevel() 공개 정적인 메소드

Get two-sided t value using confidence level percentage
public static getTwoSidedTValueFromConfidenceLevel ( string , string $cl ) : float
string degrees of freedom
$cl string confidence level percentage
리턴 float t value