I have this dataset:
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
x
8
1
data = np.array([
2
['at_home','teacher'],
3
['at_home','other'],
4
['at_home','other'],
5
['health', 'services']
6
])
7
df = pd.DataFrame(data=data, columns=['Mjob', 'Fjob'])
8
two new columns are created with the map
function
JavaScript
1
4
1
map_dict = {'at_home':1, 'teacher':2, 'other':3, 'health':4, 'services':5}
2
df['Mjob_numeric'] = df['Mjob'].map(map_dict)
3
df['Fjob_numeric'] = df['Fjob'].map(map_dict)
4