Transposing numpy array is extremely simple using np.transpose
function. Fundamentally, transposing numpy array only make sense when you have array of 2 or more than 2 dimensions.
Tag: numpy
Reshaping NumPy Array | Numpy Array Reshape Examples
In python, reshaping numpy array can be very critical while creating a matrix or tensor from vectors. In order to reshape numpy array of one dimension to n dimensions one can use np.reshape()
method. Let’s check out some simple examples.
Continue reading “Reshaping NumPy Array | Numpy Array Reshape Examples”
Creating NumPy Array for Beginners
This post will give you a better hands on with creating numpy array. At the end of the post, you will have clarity on different ways of creating numpy arrays with helpful visualizations. If you are a beginner in Data Analytics or Data Science field, you must have in depth understanding of numpy package of python.