Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

train test split

from sklearn.model_selection import train_test_split
# Split into training and test set
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state=42, stratify=y)
Source by campus.datacamp.com #
 
PREVIOUS NEXT
Tagged: #train #test #split
ADD COMMENT
Topic
Name
4+6 =