Answers for "how to convert one dimensional array into two dimensional array"

0

how to convert one dimensional array into two dimensional array

x = x.reshape(-1, 1)

# remember to check shape of your variable using x.shape, if it shows
# (y, n) then it is already 2D, if it shows (y,) instead, it is 1D.
Posted by: Guest on July-08-2020

Code answers related to "how to convert one dimensional array into two dimensional array"

Python Answers by Framework

Browse Popular Code Answers by Language