MCPcopy Create free account
hub / github.com/numpy/numpy / isnumeric

Method isnumeric

numpy/core/defchararray.py:2705–2715  ·  view source on GitHub ↗

For each element in `self`, return True if there are only numeric characters in the element. See Also -------- char.isnumeric

(self)

Source from the content-addressed store, hash-verified

2703 return asarray(zfill(self, width))
2704
2705 def isnumeric(self):
2706 """
2707 For each element in `self`, return True if there are only
2708 numeric characters in the element.
2709
2710 See Also
2711 --------
2712 char.isnumeric
2713
2714 """
2715 return isnumeric(self)
2716
2717 def isdecimal(self):
2718 """

Callers 2

failMethod · 0.80
test_isnumericMethod · 0.80

Calls 1

isnumericFunction · 0.85

Tested by 2

failMethod · 0.64
test_isnumericMethod · 0.64