Skip to content

Instantly share code, notes, and snippets.

@tanmay1070
Created June 29, 2021 09:23
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/9e24f794443e284ce3b5913ecec8329c to your computer and use it in GitHub Desktop.
Save tanmay1070/9e24f794443e284ce3b5913ecec8329c to your computer and use it in GitHub Desktop.
from sklearn.compose import ColumnTransformer
from sklearn.preprocessing import OneHotEncoder
ct = ColumnTransformer(transformers=[('encoder', OneHotEncoder(), [1])], remainder='passthrough')
X = np.array(ct.fit_transform(X))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment