HOME > テクニカルサポート > 製品 一覧 > SigmaPlot > ユーザーガイド > トランスフォーム関数一覧
ヒューリンクステクニカルサポート
皆様からのご質問のうち、よくある質問を掲載しました。
更新日: 14/05/09

tdist

スチューデントの T 分布の関数です。T 分布に従う確率変数が指定した独立変数の値を下回る確率を返します。

T 分布に従う確率変数は、正規分布変数とカイ二乗変数のスケーリングされた比率として定義されます。T 分布に従う変数の自由度は、分母のカイ二乗変数の自由度となるよう定義されます。

この分布は、信頼区間の計算や、正規分布に従う2群の観測値に関する母集団の均一性の検定に用いられます。

 

構文

tdist(x, n)

引数 x は独立変数で、スカラーもしくは範囲として与えられた数値を指定します。x が範囲の場合は、中括弧 {} を使用して定義するか、ワークシートの列を指定して定義する必要があります。引数 n は正の整数で、自由度と等しい値です。

 

これは、正規分布に従う2群の観測値が同じ平均をもつかを調べるのに用いられる一般的な計算です。この記述中の、例にある 2 の値は臨界値 (critical value) と呼ばれ、2群の標本平均の差の絶対値を、この群のプールした標準偏差で割ったものです。結果として生じる確率、0.6529 は、有意性の確率と呼ばれます。

 

関連情報

 

tdist

This function is Student’s T-distribution function. It returns the probability that a T-distributed random variable is less than a specified independent variable value.

A T-distributed random variable is defined as a scaled ratio of a standard normal variable and a chi-square variable. The degrees of freedom of a T-distributed variable is defined to be the degrees of freedom of the chi-square variable in the denominator.

This distribution is used in computing confidence intervals and for testing the homogeneity of populations for two groups of normally distributed observations.

Syntax

tdist(x,n)

The x argument represents the independent variable and can either be a scalar or a range of numbers. If x is a range, then it must be defined by either using braces { } or by specifying a worksheet column. The n argument can be any positive integer and equals the degrees of freedom.

Example

Suppose T is a T-distributed random variable with 14 degrees of freedom. To compute the probability that the absolute values of T exceed 2, we calculate:

P( |T| > 2 ) = P( T > 2) + P( T < -2) = 2*P( T > 2) = 2*( 1 – P( T < 2) ) = 2*(1-tdist(2,14)) = .06529

This is a typical calculation that is used to test whether two normally distributed groups of observations have the same mean. In this context, the value 2 in our example is called the critical value and is equal to the absolute difference in the sample means of the two groups divided by the pooled standard deviation of the groups. The resulting probability, .06529, is called the probability of significance.

 

関連情報

 

前のページにもどる