randomstate.prng.mrg32k3a.
chisquare
(df, size=None)¶Draw samples from a chi-square distribution.
When df independent random variables, each with standard normal distributions (mean 0, variance 1), are squared and summed, the resulting distribution is chi-square (see Notes). This distribution is often used in hypothesis testing.
Parameters: |
|
---|---|
Returns: | out – Drawn samples from the parameterized chi-square distribution. |
Return type: | ndarray or scalar |
Raises: |
|
Notes
The variable obtained by summing the squares of df independent, standard normally distributed random variables:
is chi-square distributed, denoted
The probability density function of the chi-squared distribution is
where \(\Gamma\) is the gamma function,
References
[1] | NIST “Engineering Statistics Handbook” http://www.itl.nist.gov/div898/handbook/eda/section3/eda3666.htm |
Examples
>>> np.random.chisquare(2,4)
array([ 1.89920014, 9.00867716, 3.13710533, 5.62318272])