-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix xr_linregress problem with dask #37
Conversation
…ils into refactor_xr_linregress
Codecov Report
@@ Coverage Diff @@
## master #37 +/- ##
==========================================
+ Coverage 40.98% 41.02% +0.04%
==========================================
Files 12 12
Lines 1320 1321 +1
Branches 310 310
==========================================
+ Hits 541 542 +1
- Misses 734 737 +3
+ Partials 45 42 -3
Continue to review full report at Codecov.
|
…ils into refactor_xr_linregress
…ils into refactor_xr_linregress
Hi, I'm keen on using this functionality of xarrayutils, however I'd prefer not to have to downgrade my Cheers! |
If you run xarray 0.15 this works out of the box. If not please let me know Sent with GitHawk |
I might want to remove the warning now. Sent with GitHawk |
Also thanks for using xarrayutils! Sent with GitHawk |
Beautiful! It works now. Do you know what changed to fix this? Initially there was an issue with Thanks again, great package ! :)) |
This was the required fix. As far as I understand when using 'vectorize' dask needed to recieve some metadata of the array shape to prevent it from 'testing' with a 0D input... |
I recently encountered a problem when using my trused
xr_linregress
. This PR establishes tests to isolate the reason.