Respuesta :

fichoh

The reshape function is used to change the row and column arrangement of data in numpy.

  • Numpy is a python module which is used to express data in the form of arrays.

  • The reshape function takes usually takes in two arguments such that the first argument denotes the row while the second argument denotes the column value.

  • numpy.reshape(2, 3) ; This means the data should be reshaped to have 2 rows and 3 columns

Learn more : https://brainly.com/question/24661996