Commit message (Expand) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: Consistently use rng as variable name for random generators | Tim Hoffmann | 2021-03-15 | 1 | -4/+4 |
* | Merge pull request #18439 from WarrenWeckesser/random-choice-exc | Charles Harris | 2021-03-07 | 1 | -4/+6 |
|\ | |||||
| * | MAINT: random: use 'from exc' instead of 'from None'; tweak error messages. | Warren Weckesser | 2021-02-19 | 1 | -7/+7 |
| * | MAINT: random: Use 'from None' when raising a ValueError in choice. | Warren Weckesser | 2021-02-18 | 1 | -3/+5 |
* | | Port error to RandomState | Kevin Sheppard | 2021-02-26 | 3 | -2/+23 |
* | | Address comments | Kevin Sheppard | 2021-02-26 | 1 | -9/+9 |
* | | Accept suggestion | Kevin Sheppard | 2021-02-26 | 1 | -1/+2 |
* | | ENH: Improve error message in multinomial | Kevin Sheppard | 2021-02-26 | 2 | -1/+21 |
* | | CLN: Move to legacy function | Kevin Sheppard | 2021-02-26 | 4 | -20/+82 |
* | | BUG: Prevent RandomState from changing | Kevin Sheppard | 2021-02-26 | 6 | -19/+45 |
* | | Added test for [-np.pi, np.pi] range for the von mises distribution using lar... | Raúl Montón Pinillos | 2021-02-26 | 3 | -0/+9 |
* | | Fixed style and added check for bounds in [-pi,pi] interval. | Raúl Montón Pinillos | 2021-02-26 | 1 | -6/+17 |
* | | Fixed Von Mises distribution for big values of kappa by falling back to a nor... | Raúl Montón Pinillos | 2021-02-26 | 1 | -3/+8 |
* | | Merge pull request #18433 from bashtage/randomstate-typing | Matti Picus | 2021-02-24 | 5 | -130/+824 |
|\ \ | |||||
| * | | BUG: Remove incorrect variable name | Kevin Sheppard | 2021-02-24 | 1 | -1/+0 |
| * | | CLN: Clean up random typing | Kevin Sheppard | 2021-02-24 | 2 | -22/+7 |
| * | | Use {int_} for int return types | Kevin Sheppard | 2021-02-24 | 1 | -1/+1 |
| * | | Small fixes | Kevin Sheppard | 2021-02-24 | 3 | -7/+4 |
| * | | BUG: Fix typing bugs | Kevin Sheppard | 2021-02-24 | 1 | -1/+1 |
| * | | ENH: Add tests for RandomState | Kevin Sheppard | 2021-02-24 | 1 | -4/+6 |
| * | | BUG: Corect typing statements in mtrand | Kevin Sheppard | 2021-02-24 | 2 | -27/+64 |
| * | | ENH/BUG: Improve definitions and fix bugs | Kevin Sheppard | 2021-02-24 | 1 | -33/+131 |
| * | | ENH/BUG: Add tests and correct typing issues | Kevin Sheppard | 2021-02-24 | 4 | -31/+61 |
| * | | MAINT: Restructure imports in pyi file | Kevin Sheppard | 2021-02-24 | 1 | -51/+53 |
| * | | ENH: Add typing for RandomState | Kevin Sheppard | 2021-02-24 | 3 | -61/+605 |
* | | | DOC: Explaing differences in code paths in choice | Kevin Sheppard | 2021-02-24 | 2 | -0/+10 |
* | | | DOC: Correct poisson docstring | Kevin Sheppard | 2021-02-24 | 2 | -4/+6 |
|/ / | |||||
* | | Merge pull request #18372 from lelayf/random-standard_t-doc | Charles Harris | 2021-02-23 | 2 | -30/+54 |
|\ \ | |||||
| * \ | Merge branch 'master' into random-standard_t-doc | François Le Lay | 2021-02-17 | 12 | -29/+828 |
| |\ \ | | |/ | |||||
| * | | Remove poorly cited reference | François Le Lay | 2021-02-12 | 2 | -24/+16 |
| * | | DOC: improve standard_t example in numpy.random. | François Le Lay | 2021-02-08 | 2 | -28/+60 |
* | | | TST: Add test for shuffle warning and assert stacklevel | Sebastian Berg | 2021-02-19 | 1 | -0/+12 |
* | | | BUG: fix stacklevel in warning within random.shuffle | Sebastian Berg | 2021-02-19 | 2 | -10/+12 |
* | | | MAINT: Correct code producing warnings | Kevin Sheppard | 2021-02-18 | 1 | -1/+1 |
| |/ |/| | |||||
* | | ENH: Reorder bool and add scalar bool for integers | Kevin Sheppard | 2021-02-16 | 1 | -9/+18 |
* | | ENH: Add overloads to integers | Kevin Sheppard | 2021-02-15 | 1 | -7/+121 |
* | | ENH: Fix abstract integer use | Kevin Sheppard | 2021-02-15 | 1 | -2/+19 |
* | | ENH: Fix typing | Kevin Sheppard | 2021-02-15 | 1 | -2/+2 |
* | | ENH: Update typing | Kevin Sheppard | 2021-02-15 | 1 | -2/+10 |
* | | ENH: Add overloads | Kevin Sheppard | 2021-02-13 | 5 | -55/+192 |
* | | ENH: Fix additional missed types | Kevin Sheppard | 2021-02-13 | 1 | -8/+17 |
* | | ENH: More typing | Kevin Sheppard | 2021-02-13 | 1 | -82/+102 |
* | | ENH: Update with TypedDict | Kevin Sheppard | 2021-02-13 | 6 | -28/+53 |
* | | ENH: Add typing for Generator | Kevin Sheppard | 2021-02-13 | 4 | -8/+253 |
* | | ENH: Add typing for MT19937 and Philox | Kevin Sheppard | 2021-02-13 | 6 | -61/+92 |
* | | ENH: Add typing for PCG64 and SFC64 | Kevin Sheppard | 2021-02-13 | 3 | -16/+107 |
* | | MAINT: Improve typing of BitGenerator | Kevin Sheppard | 2021-02-13 | 2 | -19/+50 |
* | | ENH: Initial typing of random | Kevin Sheppard | 2021-02-13 | 2 | -2/+62 |
* | | MAINT: Remove unicode markers | Kevin Sheppard | 2021-02-11 | 3 | -7/+7 |
* | | MAINT: Remove dummy_threading | Kevin Sheppard | 2021-02-11 | 2 | -9/+1 |