Differences in python array reshape scenarios | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Differences in python array reshape scenarios

What is the difference between the following: import numpy as np x = np.array([[1, 2], [3, 4], [5, 6]]) z = x.reshape(6) print(z) As opposed to: import numpy as np x = np.array([[1, 2], [3, 4], [5, 6]]) z = x.reshape(1,6) print(z) You get slightly different outputs. What exactly is the difference?

15th Apr 2021, 1:29 PM
Fan Mason
2 Answers
+ 2
Reshape means you are shaping element in number of rows and column in, x.reshape(6) Will give you a Single Dimension Array [ 1 2 3 4 5 6 ] But x.reshape(1,6) Will give a double dimension array of 6 column and 1 row. [[1 2 3 4 5 6]]
16th Apr 2021, 9:36 AM
Abhiyantā
Abhiyantā - avatar
0
Thanks for the response. How is the second case considered a 2d dimension?
16th Apr 2021, 5:51 PM
Fan Mason