Skip to content

Instantly share code, notes, and snippets.

@sagarhowal
Created December 25, 2017 10:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sagarhowal/6c4284bc2cdb9b6fed705e684ab32473 to your computer and use it in GitHub Desktop.
Save sagarhowal/6c4284bc2cdb9b6fed705e684ab32473 to your computer and use it in GitHub Desktop.
Splitting into Training set and Test set
#Splitting into Training set and Test set
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment