Skip to content
Advertisement

Add features to the “numeric” dataset whose categorical value must be mapped using a conversion formula

I have this dataset:

enter image description here

This is the request: “Add the Mjob and Fjob attributes to the “numeric” dataset whose categorical value must be mapped using a conversion formula of your choice.”

Does anyone knows how to do it? For example: if ‘at_home’ value become ‘1’ in Mjob, I want the same result in the Fjob column. Same categorical values must have the same integer values transformation.

Advertisement

Answer

You can use the map function with a pandas Series/Column to map a categorical variable from string data to numeric data. For example, with the following pandas dataframe:

JavaScript

two new columns are created with the map function

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement