日本語 English
株式会社ヒューリンクス
TEL:03-5642-8384
営業時間:9:00-17:30

tden

T 分布の確率密度関数です。指定した引数の値における累積分布関数の傾きの値を返します。

構文

tden(x, n)

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

  • 密度関数は、T 分布に従う確率変数 T の値が小区間に存在する確率を推定するために使用されます。T の自由度が16 のときの T 値が 1 と1.1 の間に存在する確率を求めるには、1 のときの T の密度に区間の長さ 0.1 を掛けます:
    tden(1,16) * .1 = .02346

関連情報

tden

This function is the T-distribution’s probability density function. It returns the value of the slope of the cumulative distribution function at the specified argument value.

Syntax

tden(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

The density function can be used to estimate the probability that the values of a T-distributed random variable T lie in a small interval. If T has 16 degrees of freedom, then to estimate the probability that the values of T lie between 1 and 1.1, multiply the density of T at 1 by the length of the interval .1:

tden(1,16) * .1 = .02346

関連情報