@@ -2288,10 +2288,10 @@ cdef class RandomState:
2288
2288
2289
2289
Parameters
2290
2290
----------
2291
- dfnum : int or array_like of ints
2292
- Degrees of freedom in numerator. Should be greater than zero .
2293
- dfden : int or array_like of ints
2294
- Degrees of freedom in denominator. Should be greater than zero .
2291
+ dfnum : float or array_like of floats
2292
+ Degrees of freedom in numerator, should be > 0 .
2293
+ dfden : float or array_like of float
2294
+ Degrees of freedom in denominator, should be > 0 .
2295
2295
size : int or tuple of ints, optional
2296
2296
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
2297
2297
``m * n * k`` samples are drawn. If size is ``None`` (default),
@@ -2371,12 +2371,16 @@ cdef class RandomState:
2371
2371
2372
2372
Parameters
2373
2373
----------
2374
- dfnum : int or array_like of ints
2375
- Parameter, should be > 1.
2376
- dfden : int or array_like of ints
2377
- Parameter, should be > 1.
2374
+ dfnum : float or array_like of floats
2375
+ Numerator degrees of freedom, should be > 0.
2376
+
2377
+ .. versionchanged:: 1.14.0
2378
+ Earlier NumPy versions required dfnum > 1.
2379
+ dfden : float or array_like of floats
2380
+ Denominator degrees of freedom, should be > 0.
2378
2381
nonc : float or array_like of floats
2379
- Parameter, should be >= 0.
2382
+ Non-centrality parameter, the sum of the squares of the numerator
2383
+ means, should be >= 0.
2380
2384
size : int or tuple of ints, optional
2381
2385
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
2382
2386
``m * n * k`` samples are drawn. If size is ``None`` (default),
@@ -2443,8 +2447,8 @@ cdef class RandomState:
2443
2447
2444
2448
Parameters
2445
2449
----------
2446
- df : int or array_like of ints
2447
- Number of degrees of freedom.
2450
+ df : float or array_like of floats
2451
+ Number of degrees of freedom, should be > 0 .
2448
2452
size : int or tuple of ints, optional
2449
2453
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
2450
2454
``m * n * k`` samples are drawn. If size is ``None`` (default),
@@ -2509,9 +2513,11 @@ cdef class RandomState:
2509
2513
2510
2514
Parameters
2511
2515
----------
2512
- df : int or array_like of ints
2513
- Degrees of freedom, should be > 0 as of NumPy 1.10.0,
2514
- should be > 1 for earlier versions.
2516
+ df : float or array_like of floats
2517
+ Degrees of freedom, should be > 0.
2518
+
2519
+ .. versionchanged:: 1.10.0
2520
+ Earlier NumPy versions required dfnum > 1.
2515
2521
nonc : float or array_like of floats
2516
2522
Non-centrality, should be non-negative.
2517
2523
size : int or tuple of ints, optional
@@ -2660,7 +2666,7 @@ cdef class RandomState:
2660
2666
2661
2667
Parameters
2662
2668
----------
2663
- df : int or array_like of ints
2669
+ df : float or array_like of floats
2664
2670
Degrees of freedom, should be > 0.
2665
2671
size : int or tuple of ints, optional
2666
2672
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
@@ -4624,6 +4630,11 @@ cdef class RandomState:
4624
4630
samples : ndarray,
4625
4631
The drawn samples, of shape (size, alpha.ndim).
4626
4632
4633
+ Raises
4634
+ -------
4635
+ ValueError
4636
+ If any value in alpha is less than or equal to zero
4637
+
4627
4638
Notes
4628
4639
-----
4629
4640
.. math:: X \\ approx \\ prod_{i=1}^{k}{x^{\\ alpha_i-1}_i}
0 commit comments