We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
is_numeric, is_float, and is_int to handle Index and Series type.
is_numeric
is_float
is_int
In [5]: i = ak.Index(ak.array([1, 2, 3])) In [6]: from arkouda.util import is_numeric In [7]: i = ak.Index(ak.array([1, 2, 3])) In [8]: is_numeric(i) Out[8]: True In [9]: s = ak.Series(ak.array(["a","b","c"]), index=ak.array([1, 2, 3])) In [10]: is_numeric(s) Out[10]: False
The text was updated successfully, but these errors were encountered:
Closes Bears-R-Us#3204 is_numeric to handle Index and Series type
403ea3a
Closes #3204 is_numeric to handle Index and Series type (#3205)
bc2697f
Co-authored-by: Amanda Potts <[email protected]>
ajpotts
Successfully merging a pull request may close this issue.
is_numeric
,is_float
, andis_int
to handle Index and Series type.The text was updated successfully, but these errors were encountered: