Skip to content

Instantly share code, notes, and snippets.

@tanmay1070
Created June 29, 2021 09:05
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 tanmay1070/fc2c1f4f0f72605551cf5f8177150794 to your computer and use it in GitHub Desktop.
Save tanmay1070/fc2c1f4f0f72605551cf5f8177150794 to your computer and use it in GitHub Desktop.
from sklearn.preprocessing import StandardScaler
sc = StandardScaler()
X_train = sc.fit_transform(X_train)
X_test = sc.transform(X_test)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment