summaryrefslogtreecommitdiff
path: root/numpy/random
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #5051 from juliantaylor/thread-test-fixJulian Taylor2014-09-061-1/+8
|\
| * TST: accept small error in threaded random testJulian Taylor2014-09-061-1/+8
* | Merge pull request #4937 from charris/pep8-numpy-randomJulian Taylor2014-08-244-175/+171
|\ \
| * | BUG: Fix None comparison giving FutureWarning in choice function.Charles Harris2014-07-311-3/+3
| * | STY: PEP8 fixups for numpy/random.Charles Harris2014-07-313-172/+168
| |/
* | DOC: document broadcastable lam parameter of poissonJulian Taylor2014-06-111-2/+7
|/
* Optimization for pickling random statesmarkdepristo2014-06-021-1/+9
* BUG: avoid infinite loop for small kappa in vonmisesJulian Taylor2014-05-282-4/+20
* BUG: reject too large seeds to RandomStateJulian Taylor2014-05-153-2/+40
* BUG: mtrand binomial algorithm is different from original paper algorithmJosh Lawrence2014-05-081-7/+4
* ENH: replace GIL of random module with a per state lockJulian Taylor2014-05-023-257/+383
* Merge pull request #4641 from gdementen/random_docstring_fixesCharles Harris2014-05-011-87/+123
|\
| * DOC: standardize "size" argument description in docstrings for functions of r...Gaëtan de Menten2014-04-251-87/+123
* | DOC: fixed typoGaëtan de Menten2014-04-251-1/+1
|/
* fixed bad signature in docstring for uniform()Gaëtan de Menten2014-04-111-1/+1
* BLD: remove cython c source from gitJulian Taylor2014-04-051-26575/+0
* BUG: Explicitly reject nan values for p in binomial(n, p). Fixes #4571.Daniel da Silva2014-04-043-1259/+1339
* TST: Add some tests for random.multivariate_normal.Charles Harris2014-03-221-10/+23
* ENH, MAINT: Check that covariance is positive-semidefinite.Charles Harris2014-03-222-7241/+7140
* DOC: Fix typo in np.random.choice documentationAllen Riddell2014-02-271-1/+1
* BUG: handle non integer types for multinomial/dirichlet sizeJulian Taylor2014-02-223-3048/+3296
* BUG: fix shuffling of flexible dtypes and masked arraysJulian Taylor2014-02-133-589/+653
* Merge pull request #4213 from juliantaylor/choice-improvseberg2014-01-222-8070/+8087
|\
| * MAINT: regenerate with cython 0.20 and fix a warning it emitsJulian Taylor2014-01-192-8066/+8080
| * ENH: reduce overhead of probs check of choiceJulian Taylor2014-01-191-4/+7
* | MAINT: silence some build warnings due to missing NO_IMPORT_ARRAYRalf Gommers2014-01-191-0/+1
|/
* BUG: compile random in lfs modeJulian Taylor2014-01-032-1/+10
* BUG: fix incorrect type in binomial ditsributions.cSebastian Berg2013-12-041-1/+1
* DOC: Fix misleading description of random_sample in numpy.random docstring.Mark Dickinson2013-10-151-2/+2
* Fix example plot of Laplace distributionNiklas Koep2013-10-151-2/+2
* MAINT: make loggam static in random kitLars Buitinck2013-09-081-3/+4
* STY: Giant comma spacing fixup.Charles Harris2013-08-183-36/+36
* STY: Giant whitespace cleanup.Charles Harris2013-08-183-729/+729
* DOC: Merge doc updates from http://docs.scipy.org/numpy/patch/.Charles Harris2013-08-151-1/+1
* MAINT: Remove uses of the WarningManager class.Charles Harris2013-07-121-7/+3
* BUG: numpy.random.binomial raised ValueError for n == 0HaroldMills2013-06-283-1557/+1608
* ENH: random: Allow ngood=0 or nbad=0 in mtrand.hypergeometric.Warren Weckesser2013-06-133-252/+259
* Merge pull request #3243 from seberg/deprecate-non-integer-arguments-newCharles Harris2013-06-091-1/+1
|\
| * STY: Style fixes for integer deprecation changesSebastian Berg2013-06-091-1/+1
| * MAINT: adept divisions for truedivideSebastian Berg2013-05-311-1/+1
* | TST: remove docstrings from test_ functionsChristoph Gohlke2013-05-271-13/+8
* | BUG: Fix multivariate_normal issue with 'size' argumentChristoph Gohlke2013-05-273-4750/+5513
* | TST: remove docstring from test_randint_range functionChristoph Gohlke2013-05-271-1/+1
* | TST: rename one test_hypergeometric_range functionChristoph Gohlke2013-05-271-1/+1
|/
* 2to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris2013-04-131-1/+2
* 2to3: Apply `print` fixer.Charles Harris2013-04-066-9/+8
* Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-031-1/+0
|\
| * DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2013-03-191-1/+0
* | 2to3: Use absolute imports.Charles Harris2013-03-285-7/+7
|/
* Merge pull request #2992 from seberg/choice-object-scalarseberg2013-03-043-4241/+4450
|\