ValueError Diharapkan Array 2D Dapatkan Array 1D Sebaliknya Regresi Linier Python

x_train= x_train.reshape(-1, 1)
y_train= y_train.reshape(-1, 1)
x_test = x_test.reshape(-1, 1)
Courageous Copperhead