Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Created May 4, 2023 19:17
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 quantra-go-algo/b0343358e69848082c4f98742eb51894 to your computer and use it in GitHub Desktop.
Save quantra-go-algo/b0343358e69848082c4f98742eb51894 to your computer and use it in GitHub Desktop.
# Feature Scaling
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