Skip to content

Instantly share code, notes, and snippets.

@lakshay-arora
Created August 19, 2019 13:32
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 lakshay-arora/bec922085e866aa62894ee0536ccd323 to your computer and use it in GitHub Desktop.
Save lakshay-arora/bec922085e866aa62894ee0536ccd323 to your computer and use it in GitHub Desktop.
# One Hot Encoding
# create an object of the One Hot Encoder
ce_OHE = ce.OneHotEncoder(cols=['gender','city'])
# transform the data
data = ce_OHE.fit_transform(data)
data.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment