@@ -402,7 +402,7 @@ cdef class RandomState:
402
402
403
403
See Also
404
404
--------
405
- Generator.random: which should be used for new code.
405
+ random. Generator.random: which should be used for new code.
406
406
407
407
Examples
408
408
--------
@@ -476,7 +476,7 @@ cdef class RandomState:
476
476
477
477
See Also
478
478
--------
479
- Generator.beta: which should be used for new code.
479
+ random. Generator.beta: which should be used for new code.
480
480
"""
481
481
return cont (& legacy_beta , & self ._aug_state , size , self .lock , 2 ,
482
482
a , 'a' , CONS_POSITIVE ,
@@ -525,7 +525,7 @@ cdef class RandomState:
525
525
526
526
See Also
527
527
--------
528
- Generator.exponential: which should be used for new code.
528
+ random. Generator.exponential: which should be used for new code.
529
529
530
530
References
531
531
----------
@@ -570,7 +570,7 @@ cdef class RandomState:
570
570
571
571
See Also
572
572
--------
573
- Generator.standard_exponential: which should be used for new code.
573
+ random. Generator.standard_exponential: which should be used for new code.
574
574
575
575
Examples
576
576
--------
@@ -688,7 +688,7 @@ cdef class RandomState:
688
688
random_integers : similar to `randint`, only for the closed
689
689
interval [`low`, `high`], and 1 is the lowest value if `high` is
690
690
omitted.
691
- Generator.integers: which should be used for new code.
691
+ random. Generator.integers: which should be used for new code.
692
692
693
693
Examples
694
694
--------
@@ -790,7 +790,7 @@ cdef class RandomState:
790
790
791
791
See Also
792
792
--------
793
- Generator.bytes: which should be used for new code.
793
+ random. Generator.bytes: which should be used for new code.
794
794
795
795
Examples
796
796
--------
@@ -850,7 +850,7 @@ cdef class RandomState:
850
850
See Also
851
851
--------
852
852
randint, shuffle, permutation
853
- Generator.choice: which should be used in new code
853
+ random. Generator.choice: which should be used in new code
854
854
855
855
Notes
856
856
-----
@@ -1058,7 +1058,7 @@ cdef class RandomState:
1058
1058
rand : Convenience function that accepts dimensions as input, e.g.,
1059
1059
``rand(2,2)`` would generate a 2-by-2 array of floats,
1060
1060
uniformly distributed over ``[0, 1)``.
1061
- Generator.uniform: which should be used for new code.
1061
+ random. Generator.uniform: which should be used for new code.
1062
1062
1063
1063
Notes
1064
1064
-----
@@ -1220,7 +1220,7 @@ cdef class RandomState:
1220
1220
--------
1221
1221
standard_normal : Similar, but takes a tuple as its argument.
1222
1222
normal : Also accepts mu and sigma arguments.
1223
- Generator.standard_normal: which should be used for new code.
1223
+ random. Generator.standard_normal: which should be used for new code.
1224
1224
1225
1225
Notes
1226
1226
-----
@@ -1369,7 +1369,7 @@ cdef class RandomState:
1369
1369
normal :
1370
1370
Equivalent function with additional ``loc`` and ``scale`` arguments
1371
1371
for setting the mean and standard deviation.
1372
- Generator.standard_normal: which should be used for new code.
1372
+ random. Generator.standard_normal: which should be used for new code.
1373
1373
1374
1374
Notes
1375
1375
-----
@@ -1448,7 +1448,7 @@ cdef class RandomState:
1448
1448
--------
1449
1449
scipy.stats.norm : probability density function, distribution or
1450
1450
cumulative density function, etc.
1451
- Generator.normal: which should be used for new code.
1451
+ random. Generator.normal: which should be used for new code.
1452
1452
1453
1453
Notes
1454
1454
-----
@@ -1545,7 +1545,7 @@ cdef class RandomState:
1545
1545
--------
1546
1546
scipy.stats.gamma : probability density function, distribution or
1547
1547
cumulative density function, etc.
1548
- Generator.standard_gamma: which should be used for new code.
1548
+ random. Generator.standard_gamma: which should be used for new code.
1549
1549
1550
1550
Notes
1551
1551
-----
@@ -1629,7 +1629,7 @@ cdef class RandomState:
1629
1629
--------
1630
1630
scipy.stats.gamma : probability density function, distribution or
1631
1631
cumulative density function, etc.
1632
- Generator.gamma: which should be used for new code.
1632
+ random. Generator.gamma: which should be used for new code.
1633
1633
1634
1634
Notes
1635
1635
-----
@@ -1717,7 +1717,7 @@ cdef class RandomState:
1717
1717
--------
1718
1718
scipy.stats.f : probability density function, distribution or
1719
1719
cumulative density function, etc.
1720
- Generator.f: which should be used for new code.
1720
+ random. Generator.f: which should be used for new code.
1721
1721
1722
1722
Notes
1723
1723
-----
@@ -1810,7 +1810,7 @@ cdef class RandomState:
1810
1810
1811
1811
See Also
1812
1812
--------
1813
- Generator.noncentral_f: which should be used for new code.
1813
+ random. Generator.noncentral_f: which should be used for new code.
1814
1814
1815
1815
Notes
1816
1816
-----
@@ -1892,7 +1892,7 @@ cdef class RandomState:
1892
1892
1893
1893
See Also
1894
1894
--------
1895
- Generator.chisquare: which should be used for new code.
1895
+ random. Generator.chisquare: which should be used for new code.
1896
1896
1897
1897
Notes
1898
1898
-----
@@ -1964,7 +1964,7 @@ cdef class RandomState:
1964
1964
1965
1965
See Also
1966
1966
--------
1967
- Generator.noncentral_chisquare: which should be used for new code.
1967
+ random. Generator.noncentral_chisquare: which should be used for new code.
1968
1968
1969
1969
Notes
1970
1970
-----
@@ -2042,7 +2042,7 @@ cdef class RandomState:
2042
2042
2043
2043
See Also
2044
2044
--------
2045
- Generator.standard_cauchy: which should be used for new code.
2045
+ random. Generator.standard_cauchy: which should be used for new code.
2046
2046
2047
2047
Notes
2048
2048
-----
@@ -2121,7 +2121,7 @@ cdef class RandomState:
2121
2121
2122
2122
See Also
2123
2123
--------
2124
- Generator.standard_t: which should be used for new code.
2124
+ random. Generator.standard_t: which should be used for new code.
2125
2125
2126
2126
Notes
2127
2127
-----
@@ -2242,7 +2242,7 @@ cdef class RandomState:
2242
2242
--------
2243
2243
scipy.stats.vonmises : probability density function, distribution, or
2244
2244
cumulative density function, etc.
2245
- Generator.vonmises: which should be used for new code.
2245
+ random. Generator.vonmises: which should be used for new code.
2246
2246
2247
2247
Notes
2248
2248
-----
@@ -2340,7 +2340,7 @@ cdef class RandomState:
2340
2340
cumulative density function, etc.
2341
2341
scipy.stats.genpareto : probability density function, distribution or
2342
2342
cumulative density function, etc.
2343
- Generator.pareto: which should be used for new code.
2343
+ random. Generator.pareto: which should be used for new code.
2344
2344
2345
2345
Notes
2346
2346
-----
@@ -2434,7 +2434,7 @@ cdef class RandomState:
2434
2434
scipy.stats.weibull_min
2435
2435
scipy.stats.genextreme
2436
2436
gumbel
2437
- Generator.weibull: which should be used for new code.
2437
+ random. Generator.weibull: which should be used for new code.
2438
2438
2439
2439
Notes
2440
2440
-----
@@ -2531,7 +2531,7 @@ cdef class RandomState:
2531
2531
2532
2532
See Also
2533
2533
--------
2534
- Generator.power: which should be used for new code.
2534
+ random. Generator.power: which should be used for new code.
2535
2535
2536
2536
Notes
2537
2537
-----
@@ -2640,7 +2640,7 @@ cdef class RandomState:
2640
2640
2641
2641
See Also
2642
2642
--------
2643
- Generator.laplace: which should be used for new code.
2643
+ random. Generator.laplace: which should be used for new code.
2644
2644
2645
2645
Notes
2646
2646
-----
@@ -2735,7 +2735,7 @@ cdef class RandomState:
2735
2735
scipy.stats.gumbel_r
2736
2736
scipy.stats.genextreme
2737
2737
weibull
2738
- Generator.gumbel: which should be used for new code.
2738
+ random. Generator.gumbel: which should be used for new code.
2739
2739
2740
2740
Notes
2741
2741
-----
@@ -2855,7 +2855,7 @@ cdef class RandomState:
2855
2855
--------
2856
2856
scipy.stats.logistic : probability density function, distribution or
2857
2857
cumulative density function, etc.
2858
- Generator.logistic: which should be used for new code.
2858
+ random. Generator.logistic: which should be used for new code.
2859
2859
2860
2860
Notes
2861
2861
-----
@@ -2942,7 +2942,7 @@ cdef class RandomState:
2942
2942
--------
2943
2943
scipy.stats.lognorm : probability density function, distribution,
2944
2944
cumulative density function, etc.
2945
- Generator.lognormal: which should be used for new code.
2945
+ random. Generator.lognormal: which should be used for new code.
2946
2946
2947
2947
Notes
2948
2948
-----
@@ -3050,7 +3050,7 @@ cdef class RandomState:
3050
3050
3051
3051
See Also
3052
3052
--------
3053
- Generator.rayleigh: which should be used for new code.
3053
+ random. Generator.rayleigh: which should be used for new code.
3054
3054
3055
3055
Notes
3056
3056
-----
@@ -3134,7 +3134,7 @@ cdef class RandomState:
3134
3134
3135
3135
See Also
3136
3136
--------
3137
- Generator.wald: which should be used for new code.
3137
+ random. Generator.wald: which should be used for new code.
3138
3138
3139
3139
Notes
3140
3140
-----
@@ -3211,7 +3211,7 @@ cdef class RandomState:
3211
3211
3212
3212
See Also
3213
3213
--------
3214
- Generator.triangular: which should be used for new code.
3214
+ random. Generator.triangular: which should be used for new code.
3215
3215
3216
3216
Notes
3217
3217
-----
@@ -3318,7 +3318,7 @@ cdef class RandomState:
3318
3318
--------
3319
3319
scipy.stats.binom : probability density function, distribution or
3320
3320
cumulative density function, etc.
3321
- Generator.binomial: which should be used for new code.
3321
+ random. Generator.binomial: which should be used for new code.
3322
3322
3323
3323
Notes
3324
3324
-----
@@ -3466,7 +3466,7 @@ cdef class RandomState:
3466
3466
3467
3467
See Also
3468
3468
--------
3469
- Generator.negative_binomial: which should be used for new code.
3469
+ random. Generator.negative_binomial: which should be used for new code.
3470
3470
3471
3471
Notes
3472
3472
-----
@@ -3549,7 +3549,7 @@ cdef class RandomState:
3549
3549
3550
3550
See Also
3551
3551
--------
3552
- Generator.poisson: which should be used for new code.
3552
+ random. Generator.poisson: which should be used for new code.
3553
3553
3554
3554
Notes
3555
3555
-----
@@ -3636,7 +3636,7 @@ cdef class RandomState:
3636
3636
--------
3637
3637
scipy.stats.zipf : probability density function, distribution, or
3638
3638
cumulative density function, etc.
3639
- Generator.zipf: which should be used for new code.
3639
+ random. Generator.zipf: which should be used for new code.
3640
3640
3641
3641
Notes
3642
3642
-----
@@ -3733,7 +3733,7 @@ cdef class RandomState:
3733
3733
3734
3734
See Also
3735
3735
--------
3736
- Generator.geometric: which should be used for new code.
3736
+ random. Generator.geometric: which should be used for new code.
3737
3737
3738
3738
Examples
3739
3739
--------
@@ -3797,7 +3797,7 @@ cdef class RandomState:
3797
3797
--------
3798
3798
scipy.stats.hypergeom : probability density function, distribution or
3799
3799
cumulative density function, etc.
3800
- Generator.hypergeometric: which should be used for new code.
3800
+ random. Generator.hypergeometric: which should be used for new code.
3801
3801
3802
3802
Notes
3803
3803
-----
@@ -3920,7 +3920,7 @@ cdef class RandomState:
3920
3920
--------
3921
3921
scipy.stats.logser : probability density function, distribution or
3922
3922
cumulative density function, etc.
3923
- Generator.logseries: which should be used for new code.
3923
+ random. Generator.logseries: which should be used for new code.
3924
3924
3925
3925
Notes
3926
3926
-----
@@ -4023,7 +4023,7 @@ cdef class RandomState:
4023
4023
4024
4024
See Also
4025
4025
--------
4026
- Generator.multivariate_normal: which should be used for new code.
4026
+ random. Generator.multivariate_normal: which should be used for new code.
4027
4027
4028
4028
Notes
4029
4029
-----
@@ -4216,7 +4216,7 @@ cdef class RandomState:
4216
4216
4217
4217
See Also
4218
4218
--------
4219
- Generator.multinomial: which should be used for new code.
4219
+ random. Generator.multinomial: which should be used for new code.
4220
4220
4221
4221
Examples
4222
4222
--------
@@ -4347,7 +4347,7 @@ cdef class RandomState:
4347
4347
4348
4348
See Also
4349
4349
--------
4350
- Generator.dirichlet: which should be used for new code.
4350
+ random. Generator.dirichlet: which should be used for new code.
4351
4351
4352
4352
Notes
4353
4353
-----
@@ -4482,7 +4482,7 @@ cdef class RandomState:
4482
4482
4483
4483
See Also
4484
4484
--------
4485
- Generator.shuffle: which should be used for new code.
4485
+ random. Generator.shuffle: which should be used for new code.
4486
4486
4487
4487
Examples
4488
4488
--------
@@ -4608,7 +4608,7 @@ cdef class RandomState:
4608
4608
4609
4609
See Also
4610
4610
--------
4611
- Generator.permutation: which should be used for new code.
4611
+ random. Generator.permutation: which should be used for new code.
4612
4612
4613
4613
Examples
4614
4614
--------
0 commit comments