I am trying to split my dataset into training and testing dataset, but I am getting this error:
X_train,X_test,Y_train,Y_test = sklearn.cross_validation.train_te
you can try this
X_train,X_test,Y_train,Y_test = sklearn.model_selection.train_test_split(X,boston_df.price)