forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENH: stats: test marray support for hypothesis tests #118
Open
mdhaber
wants to merge
73
commits into
marray_gmean
Choose a base branch
from
marray_hypotests
base: marray_gmean
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Also update docstring and tests accordingly. Some discussion and motivation for this change: scipy#21531.
…_subscriptable_types TST: sparse: add tests for subscriptable types
…ents (scipy#22462) * ENH: stats.pearsonr: two simple but substantial efficiency improvements * MAINT: stats.pearsonr: adjustments per review
* DOC: Prevent A@x=b from becoming a URL * Update _interface.py [docs only] Co-authored-by: Jake Bowhay <60778417+j-bowhay@users.noreply.github.com> * Update _interface.py [docs only] Co-authored-by: Jake Bowhay <60778417+j-bowhay@users.noreply.github.com> * Update _interface.py [docs only] --------- Co-authored-by: Jake Bowhay <60778417+j-bowhay@users.noreply.github.com>
ENH: parallelisation of `optimize._numdiff.approx_derivative`
…ds-and-callback BUG: fix error in `optimize.minimize(..., method='L-BFGS-B', ...)` with fixed `bounds` and `callback`
[skip circle] [skip cirrus]
* Fixes scipy#22479. * This small patch allows `test_stats.py::TestRegression::test_regressZEROX` to pass on x86_64 Linux instead of failing due to an extra division by zero warning over a fairly narrow range of NumPy versions near `1.25.2` where SIMD implementation details appear to have been slightly different. [skip circle]
* This small patch prevents the latest stable release of Cython from complaining about a failure to type a loop variable, which otherwise generates some annoying build spam on x86_64 Linux for example: ``` [1422/1463] Generating 'scipy/spatial/transform/_rotation.cpython-311-x86_64-linux-gnu.so.p/_rotation.c' performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1162:34: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1163:34: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1164:34: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1165:34: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1165:55: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1166:34: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1174:61: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1174:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1175:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1175:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1175:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1176:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1176:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1176:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1177:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1177:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1177:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1179:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1179:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1179:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1180:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1180:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1180:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1181:39: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1181:60: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1181:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1182:21: Index should be typed for more efficient access performance hint: /home/treddy/github_projects/scipy/scipy/spatial/transform/_rotation.pyx:1185:29: Index should be typed for more efficient access ``` [skip circle]
MAINT: stats: pearsonr SIMD-related shim
…sing_type MAINT: spatial: missing Cython type in build
DOC: optimize.rst, improve workers examples
For the Linux `distro_multiple_pythons` CI job, also bump the base Ubuntu version so that we use Python 3.11 (non-default) and Python 3.12 (default). This required using the deadsnakes PPA, because the newer Ubuntu doesn't have multiple Python versions in its main package channel. Co-authored-by: Ralf Gommers <ralf.gommers@gmail.com>
d374b54
to
3daa871
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Reference issue
scipy#22393