logistic regression train test split scikit code example
Example 1: train test split pandas
from sklearn.model_selection import train_test_split
train, test = train_test_split(df, test_size=0.2)
Example 2: sklearn train_test_split
import numpy as np
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.33, random_state=42
)