Skip to content

Instantly share code, notes, and snippets.

@omairaasim
Created September 1, 2019 16:54
Show Gist options
  • Save omairaasim/d05a3ce324c66cd5e539294566de8763 to your computer and use it in GitHub Desktop.
Save omairaasim/d05a3ce324c66cd5e539294566de8763 to your computer and use it in GitHub Desktop.
project_1_step_2_split_dataset
# Step 2: Split data into training and testing
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=1/3, random_state=0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment