Identifying numeric and array types in numpy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:24:34Z http://stackoverflow.com/feeds/question/500328 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/500328/identifying-numeric-and-array-types-in-numpy 2 Identifying numeric and array types in numpy David 2009-02-01T06:17:38Z 2009-02-01T14:22:55Z <p>Is there an existing function in numpy that will tell me if a value is either a numeric type or a numpy array? I'm writing some data-processing code which needs to handle numbers in several different representations (by "number" I mean any representation of a numeric quantity which can be manipulated using the standard arithmetic operators, +, -, *, /, **).</p> <p>Some examples of the behavior I'm looking for</p> <pre><code>&gt;&gt;&gt; is_numeric(5) True &gt;&gt;&gt; is_numeric(123.345) True &gt;&gt;&gt; is_numeric('123.345') False &gt;&gt;&gt; is_numeric(decimal.Decimal('123.345')) True &gt;&gt;&gt; is_numeric(True) False &gt;&gt;&gt; is_numeric([1, 2, 3]) False &gt;&gt;&gt; is_numeric([1, '2', 3]) False &gt;&gt;&gt; a = numpy.array([1, 2.3, 4.5, 6.7, 8.9]) &gt;&gt;&gt; is_numeric(a) True &gt;&gt;&gt; is_numeric(a[0]) True &gt;&gt;&gt; is_numeric(a[1]) True &gt;&gt;&gt; is_numeric(numpy.array([numpy.array([1]), numpy.array([2])]) True &gt;&gt;&gt; is_numeric(numpy.array(['1']) False </code></pre> <p>If no such function exists, I know it shouldn't be hard to write one, something like </p> <pre><code>isinstance(n, (int, float, decimal.Decimal, numpy.number, numpy.ndarray)) </code></pre> <p>but are there other numeric types I should include in the list?</p> http://stackoverflow.com/questions/500328/identifying-numeric-and-array-types-in-numpy/500337#500337 0 Answer by gimel for Identifying numeric and array types in numpy gimel 2009-02-01T06:25:04Z 2009-02-01T06:58:38Z <p>You can use <a href="http://docs.python.org/library/functions.html#type" rel="nofollow"><code>type()</code></a>:</p> <pre><code>&gt;&gt;&gt; a=scipy.array([1,2,3,4]) &gt;&gt;&gt; b=array.array('L') &gt;&gt;&gt; type(a) &lt;type 'numpy.ndarray'&gt; &gt;&gt;&gt; type(b) &lt;type 'array.array'&gt; &gt;&gt;&gt; c=10.5 &gt;&gt;&gt; type(c) in scipy.ScalarType True &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/500328/identifying-numeric-and-array-types-in-numpy/500392#500392 0 Answer by J.F. Sebastian for Identifying numeric and array types in numpy J.F. Sebastian 2009-02-01T07:31:03Z 2009-02-01T08:04:41Z <p>Your <code>is_numeric</code> is ill-defined. See my comments to your question.</p> <p>Other numerical types could be: <code>long</code>, <code>complex</code>, <code>fractions.Fraction</code>, <code>numpy.bool_</code>, <code>numpy.ubyte</code>, ...</p> <p><code>operator.isNumberType()</code> returns <code>True</code> for Python numbers and <code>numpy.array</code>.</p> <p>Since Python 2.6 you can use <code>isinstance(d, numbers.Number)</code> instead of deprecated <code>operator.isNumberType()</code>.</p> <p>Generally it is better to check the capabilities of the object (e.g., whether you can add an integer to it) and not its type.</p> http://stackoverflow.com/questions/500328/identifying-numeric-and-array-types-in-numpy/500395#500395 3 Answer by Triptych for Identifying numeric and array types in numpy Triptych 2009-02-01T07:34:44Z 2009-02-01T07:34:44Z <p>In general, the flexible, fast, and pythonic way to handle unknown types is to just perform some operation on them and catch an exception on invalid types. </p> <pre><code>try: a = 5+'5' except TypeError: print "Oops" </code></pre> <p>Seems to me that this approach is easier than special-casing out some function to determine absolute type certainty.</p> http://stackoverflow.com/questions/500328/identifying-numeric-and-array-types-in-numpy/500908#500908 2 Answer by dF for Identifying numeric and array types in numpy dF 2009-02-01T14:22:55Z 2009-02-01T14:22:55Z <p>As others have answered, there could be other numeric types besides the ones you mention. One approach would be to check explicitly for the capabilities you want, with something like</p> <pre><code>def is_numeric(obj): attrs = ['__add__', '__sub__', '__mul__', '__div__', '__pow__'] return all(hasattr(obj, attr) for attr in attrs) </code></pre> <p>This works for all your examples except the last one, <code>numpy.array(['1'])</code>. That's because <code>numpy.ndarray</code> has the special methods for numeric operations but raises TypeError if you try to use them inappropriately with string or object arrays. You could add an explicit check for this like</p> <pre><code> ... and not (isinstance(obj, ndarray) and obj.dtype.kind in 'OSU') </code></pre> <p>This may be good enough. </p> <p>But... you can never be <em>100%</em> sure that somebody won't define another type with the same behavior, so a more foolproof way is to actually try to do a calculation and catch the exception, something like</p> <pre><code>def is_numeric_paranoid(obj): try: obj+obj, obj-obj, obj*obj, obj**obj, obj/obj except ZeroDivisionError: return True except Exception: return False else: return True </code></pre> <p>but depending on how often you plan to call use it and with what arguments, this may not be practical (it can be potentially slow, e.g. with large arrays).</p>