Skip to content

Instantly share code, notes, and snippets.

@AVJdataminer
Created April 24, 2020 03:58
Show Gist options
  • Save AVJdataminer/386653ba70d31d698f701c4db4c51c82 to your computer and use it in GitHub Desktop.
Save AVJdataminer/386653ba70d31d698f701c4db4c51c82 to your computer and use it in GitHub Desktop.
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y,
stratify=df['Country'],
test_size=0.25)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment