dpnp.random.chisquare
- dpnp.random.chisquare(df, size=None)[source]
Chi-square distribution
Draw samples from a chi-square distribution.
For full documentation refer to
numpy.random.chisquare
.Limitations
Parameter
df
is supported as a scalar. Otherwise,numpy.random.chisquare(df, size)
samples are drawn. Output array data type isdpnp.float64
.Examples
>>> dpnp.random.chisquare(2,4) array([ 1.89920014, 9.00867716, 3.13710533, 5.62318272]) # random