Using xr.apply_ufunc in a masked DataArray in an efficient way #7627
-
This one is related to this other thread (#7591). I'm applying multiple regressions over lat,lon pairs using How should I deal with this situation? Is there a way to constrain the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, that's not possible. You could short-circuit the all-NaN case in your custom function though. So
Or something lilke that |
Beta Was this translation helpful? Give feedback.
No, that's not possible. You could short-circuit the all-NaN case in your custom function though.
So
Or something lilke that