You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My bet was to go with masking with something like xf::where(data_array, data_array > 0.5), but that's not working since xf::where seems a filter on label and not data.
What would be the best way to achieve that?
Also, when looking for comparison operator, I wasn't able to find xf::greater and like functions in the code (from the "From xarray to xframe" documentation). I guess they are still under development?
The text was updated successfully, but these errors were encountered:
Hi,
I'm trying to retrieve axis label values of data that fit a certain condition. With xarray (python) I would go with something like:
but I'm failing to replicate that through xframe on multiple aspects:
My bet was to go with masking with something like
xf::where(data_array, data_array > 0.5)
, but that's not working sincexf::where
seems a filter on label and not data.What would be the best way to achieve that?
Also, when looking for comparison operator, I wasn't able to find
xf::greater
and like functions in the code (from the "From xarray to xframe" documentation). I guess they are still under development?The text was updated successfully, but these errors were encountered: