Numpy: Should I use newaxis or None? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:52:14Z http://stackoverflow.com/feeds/question/944863 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/944863/numpy-should-i-use-newaxis-or-none 1 Numpy: Should I use newaxis or None? nikow 2009-06-03T13:48:45Z 2009-06-03T15:05:52Z <p>In numpy one can use the 'newaxis' object in the slicing syntax to create an axis of length one, e.g.:</p> <pre><code>import numpy as np print np.zeros((3,5))[:,np.newaxis,:].shape # shape will be (3,1,5) </code></pre> <p>The <a href="http://docs.scipy.org/doc/numpy/reference/arrays.indexing.html#numpy.newaxis" rel="nofollow">documentation states</a> that one can also use <code>None</code> instead of <code>newaxis</code>, the effect is exactly the same.</p> <p>Is there any reason to choose one over the other? Is there any general preference or style guide? My impression is that <code>newaxis</code> is more popular, probably because it is more explicit. So is there any reason why <code>None</code> is allowed?</p> http://stackoverflow.com/questions/944863/numpy-should-i-use-newaxis-or-none/945313#945313 5 Answer by AFoglia for Numpy: Should I use newaxis or None? AFoglia 2009-06-03T15:05:52Z 2009-06-03T15:05:52Z <p><code>None</code> is allowed because <code>numpy.newaxis</code> is merely an alias for <code>None</code>.</p> <pre><code>In [1]: import numpy In [2]: numpy.newaxis is None Out[2]: True </code></pre> <p>The authors probably chose it because they needed a convenient constant, and had <code>None</code> was available.</p> <p>As for why you should prefer <code>newaxis</code> over <code>None</code>: mainly it's because it's more explicit, and partly because someday the <code>numpy</code> authors might change it to something other than <code>None</code>. (They're not planning to, and probably won't, but there's no good reason to prefer <code>None</code>.)</p>