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
exetera needs a where function that carries out the numpy where functionality. This should probably be implemented in the form of exetera.where(a_field = 'foo', 'bar', a_field).
We could also potentially expose this functionality in other ways, such as a_field.where() although that doesn't mirror the numpy api
a = exetera.where(b == 2, 1, 0) # memory field
df['a'] = exetera.where(b == 2, 1, 0) # hdf5 field
The text was updated successfully, but these errors were encountered:
exetera needs a where function that carries out the numpy where functionality. This should probably be implemented in the form of exetera.where(a_field = 'foo', 'bar', a_field).
We could also potentially expose this functionality in other ways, such as a_field.where() although that doesn't mirror the numpy api
a = exetera.where(b == 2, 1, 0) # memory field
df['a'] = exetera.where(b == 2, 1, 0) # hdf5 field
The text was updated successfully, but these errors were encountered: