cara mengubah array satu dimensi menjadi array dua dimensi

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.
stackoverflow.com