summaryrefslogtreecommitdiff
path: root/numpy/random
Commit message (Expand)AuthorAgeFilesLines
* DOC: random: Fix default_rng docstring (#17375)Albert Villanova del Moral2020-09-251-1/+1
* Merge pull request #17104 from BvB93/sub-modulesCharles Harris2020-09-071-0/+61
|\
| * ENH: Replace module-level `__getattr__` with explicitly defined objectsBas van Beek2020-08-191-2/+59
| * ENH: Add placeholder stubs for all sub-modulesBas van Beek2020-08-191-0/+4
* | DOC: Fix the link to the quick-start in the old API functionsSebastian Berg2020-09-031-42/+42
* | ENH: random: Add the method `permuted` to Generator. (#15121)Warren Weckesser2020-09-022-62/+294
|/
* BUG: fix a compile and a test warningmattip2020-08-091-1/+1
* BUG: Validate output size in bin- and multinomialKevin Sheppard2020-07-145-1/+28
* DOC: use print() instead of str() for generator object to pass circleci testsLaurie2020-07-121-4/+4
* DOC: updates based on mattip's suggestions, add seed to all default_rng so te...Laurie2020-07-121-14/+12
* DOC: add examples to random number generator pagesLaurie2020-07-121-0/+55
* DOC: Fix RST/numpydoc standard.Matthias Bussonnier2020-07-101-1/+1
* BLD: update cython to 0.29.21mattip2020-07-101-2/+2
* BUG: Ensure SeedSequence 0-padding does not collide with spawn keysRobert Kern2020-06-092-2/+37
* Merge pull request #16504 from bashtage/doc-mv-normCharles Harris2020-06-081-1/+2
|\
| * DOC: Correct MV Normal sigKevin Sheppard2020-06-051-1/+2
* | Merge pull request #16510 from madphysicist/patch-1Charles Harris2020-06-081-1/+1
|\ \
| * | DOC: Minor rounding correction in Generator.binomialJoseph Fox-Rabinovitz2020-06-061-1/+1
| |/
* | BUG: Fix cython warning in random/_common.pyx.Charles Harris2020-06-071-1/+2
* | BUG: Correct broadcasting when size is not NoneKevin Sheppard2020-06-052-0/+70
|/
* DEP: Deprecate passing shape=None to mean shape=()Eric Wieser2020-05-312-12/+18
* MAINT: precompute log(2.0 * M_PI) in `random_loggam' (gh-16237)Elia Franzella2020-05-191-10/+12
* Merge pull request #16156 from WarrenWeckesser/deprecate-dualSebastian Berg2020-05-192-4/+4
|\
| * DEP: Deprecate `numpy.dual`.Warren Weckesser2020-05-042-4/+4
* | Merge pull request #16153 from bashtage/fix-mt19937-jumpCharles Harris2020-05-136-329/+210
|\ \
| * | DOC: Update docstringKevin Sheppard2020-05-121-4/+3
| * | DOC: Improve the docstring for MT19937.jumpedKevin Sheppard2020-05-121-0/+18
| * | MAINT: Remove unused fileKevin Sheppard2020-05-121-215/+0
| * | REF: Refactor jump codeKevin Sheppard2020-05-124-121/+154
| * | BUG: Correct loop order in MT19937 jumpKevin Sheppard2020-05-123-6/+52
* | | DOC: Fix Generator.choice docstringKevin Sheppard2020-05-132-2/+2
|/ /
* | Merge pull request #16162 from mattip/add-pxdCharles Harris2020-05-071-3/+13
|\ \
| * | TST: add tag to __init__.pxd and test that the tag is foundmattip2020-05-061-3/+13
* | | Mark tests as a subpackage rather than data.Hameer Abbasi2020-05-061-1/+2
| |/ |/|
* | MAINT: Fix random.PCG64 signature in its docstring (#16113)ndunnewind2020-04-291-1/+1
* | BUG: Fix numpy.random.dirichlet returns NaN for small 'alpha' parameters. (#1...Benjamin Trendelkamp-Schroer2020-04-292-13/+97
|/
* TST: random: Skip a test if integers are 32 bit.Warren Weckesser2020-04-271-0/+2
* TST: random: Add more repeatability tests for random integers.Warren Weckesser2020-04-272-0/+45
* MAINT: random: Add assert() statements.Warren Weckesser2020-04-261-0/+11
* BUG: random: Generator.integers(2**32) always returned 0.Warren Weckesser2020-04-262-11/+46
* DOC: add a note on sampling 2-D arrays to random.choice docstringRalf Gommers2020-04-251-0/+5
* BUG: missing 'f' prefix for fstringmattip2020-04-221-1/+1
* BUG: Alpha parameter must be 1D in `generator.dirichlet` (#15951)panpiort82020-04-184-18/+32
* Merge pull request #15876 from panpiort8/multinomial_pvals_1dMatti Picus2020-04-114-4/+16
|\
| * Add minor tests enhancementPan Jan2020-04-062-2/+2
| * Replace checks with direct function callPan Jan2020-04-012-8/+4
| * Add testing and replace checkPan Jan2020-04-014-4/+16
| * BUG: add check if pvals is 1d array in numpy.random.*.multinomialPan Jan2020-03-312-0/+4
* | Typo in the `mtrand.pyx` was fixedAndrei Shirobokov2020-04-081-1/+1
* | BUG: random: Disallow p=0 in negative_binomialWarren Weckesser2020-04-052-3/+8