Skip to content

Instantly share code, notes, and snippets.

@merishnaSuwal
Created November 9, 2020 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merishnaSuwal/7ce01ec127fedd7c754307aeccf710a2 to your computer and use it in GitHub Desktop.
Save merishnaSuwal/7ce01ec127fedd7c754307aeccf710a2 to your computer and use it in GitHub Desktop.
from sklearn.preprocessing import StandardScaler
# Initialization of the class
scaler = StandardScaler()
# Applying the scaler on test and train data
X_train = scaler.fit_transform(X_train)
X_test = scaler.transform(X_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment