Advanced-excel-functions-advanced-excel-statistical-hypgeomdist-function

提供:Dev Guides
移動先:案内検索

統計-HYPGEOM.DIST関数

説明

HYPGEOM.DIST関数は、超幾何分布を返します。 HYPGEOM.DISTは、サンプルサイズ、母集団の成功、母集団のサイズを指定すると、指定した数のサンプルが成功する確率を返します。

HYPGEOM.DISTは、各観測が成功または失敗のいずれかであり、特定のサイズの各サブセットが同等の尤度で選択される有限母集団の問題に使用します。

構文

HYPGEOM.DIST (sample_s, number_sample, population_s, number_pop, cumulative)

引数

Argument Description Required/Optional
Sample_s The number of successes in the sample. Required
Number_sample The size of the sample. Required
Population_s The number of successes in the population. Required
Number_pop The population size. Required
Cumulative

A logical value that determines the form of the function.

累積がTRUEの場合、HYPGEOM.DISTは累積分布関数を返します。

累積がFALSEの場合、HYPGEOM.DISTは確率質量関数を返します。

Required

ノート

  • 超幾何分布の方程式は- + P \ left(X = x \ right)= \ frac \ {\ begin \ {pmatrix} M \\ x \ end \ {pmatrix} \ begin \ {pmatrix} NM \\ nx \ end \ {pmatrix} } \ {\ begin \ {pmatrix} N \\ n \ end \ {pmatrix}} ここで、- x = sample_s + n = number_sample + M =母集団_s + N = number_pop
  • HYPGEOM.DISTは、有限母集団からの置換なしのサンプリングで使用されます。
  • すべての引数は整数に切り捨てられます。
  • 引数が非数値の場合、HYPGEOM.DISTは#VALUE!を返します。 エラー値
  • HYPGEOM.DISTは#NUM!を返します。 エラー値
  • sample_s <0またはsample_s> number_sampleの小さい方
  • sample_s>母集団_sの場合
  • sample_s>(number_sample-number_pop +母集団_s)の場合
  • number_sample≤0または> number_popの場合
  • Population_s≤0または> number_popの場合
  • number_pop≤0の場合

適用範囲

Excel 2010、Excel 2013、Excel 2016

Hypgeom.Dist Function