Transform the 2 numerical features (age and education_years) into 2 (nominal) categorical…

Transform the 2 numerical features (age and education_years) into 2 (nominal) categorical features. Specifically, use equal-width binning with the following 3 bins for each numerical feature: low, mid, and high. Once you do that, all the 5 descriptive features in your dataset will be categorical. Your dataset’s name after Task 1 needs to be df_all_cat. Please make sure to run the following code for marking purposes:

# so that we can see all the columns

pd.set_option(‘display.max_columns’, None)

print(df_all_cat.shape)

df_all_cat.head()

###

# please run below in a separate cell!!!

for col in df_all_cat.columns.tolist():

print(col + ‘:’)

print(df_all_cat[col].value_counts())

print(‘********’)

HINT: You can use the cut() function in Pandas for equal-width binning.

Attachments:

 
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount!
Use Discount Code "Newclient" for a 15% Discount!

NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.