pandas mapping values code example
Example: maping value to data in pandas dataframe
note: u can assigne values in each of the common values in the dataframe
df['new_coloum'] = df['coloum'].map({'value_1':1,'value_2':0})
note: u can assigne values in each of the common values in the dataframe
df['new_coloum'] = df['coloum'].map({'value_1':1,'value_2':0})