Here is my dataframe:
Name Job
A Back-end Engineer
B Front-end Engineer;Product Manager
C Product Manager;Business Development;System Analyst
I want to transform that dataframe into dummy (one hot encoding) like this:
Name Back-end Engineer Business Development Front-end Engineer Product Manager System Analyst
A 1 0 0 0 0
B 0 0 1 1 0
C 0 1 0 1 0
I tried to use pandas.get_dummies but it's failure because the variable is multivariate.