In numpy one can use the ‘newaxis’ object in the slicing syntax to create an axis of length one, e.g.:
import numpy as np print np.zeros((3,5))[:,np.newaxis,:].shape # shape will be (3,1,5)
The documentation states that one can also use None instead of newaxis, the effect is exactly the same.
Is there any reason to choose one over the other? Is there any general preference or style guide? My impression is that newaxis is more popular, probably because it is more explicit. So is there any reason why None is allowed?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
None is allowed because numpy.newaxis is merely an alias for None.
In [1]: import numpy In [2]: numpy.newaxis is None Out[2]: True
The authors probably chose it because they needed a convenient constant, and None was available.
As for why you should prefer newaxis over None: mainly it’s because it’s more explicit, and partly because someday the numpy authors might change it to something other than None. (They’re not planning to, and probably won’t, but there’s no good reason to prefer None.)
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0