-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encode categorical columns #272
Comments
@reza1615 So I just started looking at the |
@aschonfeld please take a look the attached file for the encoders |
So based on your OneHotEncoder example in |
Yes dummies is equal to onehot + drop the first onehot column |
@reza1615 quick question on OneHot encoder, why are we setting |
@aschonfeld : to avoid dependency among the variables. |
Maybe I'm doing something wrong then. I'm running this piece of code:
This only returns a dataframe with |
It is correct. we don't need car_benze. (in real life we need benze 😁) |
Added in v1.19.0 |
It would be helpful to have column encoding as new column or for some cases inplace. Most common algorithms are
The text was updated successfully, but these errors were encountered: