Superb and simplified video presentation...Thank you.
@zidhas54613 күн бұрын
thankyou sir I used label encoding method for my project😊 u explained in very easy in simple way
@siddhantborkar45602 ай бұрын
Thanq very much sir
@JahnaviVasamsetti-v3b5 ай бұрын
super sir ,thank you soo much
@aartisharma47932 жыл бұрын
Thank you so much. These concepts were not that easy for me as you made these now.Any average learner can understand and implement these concept.
@sukamal_das2 жыл бұрын
Glad that I could help you 🙂👍
@bhulekhyag4189 Жыл бұрын
i have been working on it for long time , you made it simple .. thank you
@gpoojitha26149 ай бұрын
Can you please give a piece of code from which we can get the number of categorical columns and numeric columns in the whole dataset
@abdulwahabchudhary626911 ай бұрын
Excellent work! I have been working on it for two days, but I did not grasp the main concept. However, after watching the video, I now understand the whole concept. Is my use of 'dose' correct? Also, please check the entire sentence
@RO_BOMan Жыл бұрын
Time saver ,thank you so much🙏
@JyotirmoyeeRoy7 ай бұрын
I'm getting true or false instead of 0 and 1 after applying the dummies. Why is that?
@alami90242 ай бұрын
Thanks :)
@shahfahad36822 жыл бұрын
Great explanation! I have a question though, When we apply label encoder and the categorical column has more than 3 unique values it assigns the value as 1,2,3,4 etc. Are there any chances that our model prioritizes the category which has a higher number compared to others?
@sukamal_das2 жыл бұрын
Yes you are right. To avoid this problem we can go for One Hot Encoding technique.
@shahfahad36822 жыл бұрын
@@sukamal_das but what if we have 100 categories? Then it would create 99 extra columns right? How do we handle this?
@SusmitaMelodies Жыл бұрын
Thankyou❤
@mkeremyucedag4 жыл бұрын
Hey! Great video as always. I have a question for you. In the end you're doing fit_transform with for loop. How can I do it with map, list ? When I do list(map(le.fit_transform(df_cat),df_cat)) it gives this error : y should be a 1d array, got an array of shape (513, 2) instead. How would you do map,list as an alternative to for loop ?
@sukamal_das4 жыл бұрын
You can also use this technique - df_cat = df_cat.apply(lambda x : LabelEncoder().fit_transform(x))
@mkeremyucedag4 жыл бұрын
@@sukamal_das Oh, thanks! That works and surely is an easy way to work things. Wish you good luck, thanks again !
@SusmitaMelodies Жыл бұрын
Im having error even after converting categorical values df value still shows object type