D3.js Random Value Viewer

d3.random.normal()

Returns a function for generating random numbers with a normal (Gaussian) distribution. The expected value of the generated pseudorandom numbers is mean, with the given standard deviation. If deviation is not specified, it defaults to 1.0; if mean is not specified, it defaults to 0.0.
通常の(ガウス)分布にて乱数を生成する機能を返します。生成された擬似乱数の期待値は、平均値や指定された標準偏差です。偏差が指定されていない場合はデフォルトで1.0が、平均が指定されていない場合は、デフォルトが0.0が設定されます。

d3.random.logNormal()

Returns a function for generating random numbers with a log-normal distribution. The expected value of the random variable’s natural logrithm is mean, with the given standard deviation. If deviation is not specified, it defaults to 1.0; if mean is not specified, it defaults to 0.0.
対数正規分布で乱数を生成する機能を返します。ランダム変数の自然対数の期待値は、平均値や指定された標準偏差です。偏差が指定されていない場合はデフォルトで1.0が、平均が指定されていない場合は、デフォルトが0.0が設定されます。

d3.random.bates()

Returns a function for generating random numbers with a Bates distribution. The number of independent variables is specified by count.
ベイツ分布の乱数を生成する機能を返します。独立変数の数値は、countで指定されています。

d3.random.irwinHall()

Returns a function for generating random numbers with an Irwin–Hall distribution. The number of independent variables is specified by count.
アーウィン・ホール分布の乱数を生成する機能を返します。独立変数の数値は、countで指定されています。