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
There's a few places in pint-pandas where I've needed to check different types of quantity objects. I think these could be part of pint so other libraries could use them too.
I'm thinking functions like:
is_sequence_of_quantity([Q_(1),Q_(2)]) = True
is_quantity_scalar(Q_(1)) = True
is_quantity_array(Q_(np.array([1,2]))) = True
The text was updated successfully, but these errors were encountered:
There's a few places in pint-pandas where I've needed to check different types of quantity objects. I think these could be part of pint so other libraries could use them too.
I'm thinking functions like:
is_sequence_of_quantity([Q_(1),Q_(2)]) = True
is_quantity_scalar(Q_(1)) = True
is_quantity_array(Q_(np.array([1,2]))) = True
The text was updated successfully, but these errors were encountered: