I have this first dataFrame
df1: A B C D Car 0 Bike 0 Train 0 Plane 0 Other_1 Plane 2 Other_2 Plane 3 Other 3 Plane 4 and this other one:
df2: A B Car 4 % Bike 5 % Train 6 % Plane 7 % So I want to get this combination:
df1: A B C D Car 0 4 % Bike 0 5 % Train 0 6 % Plane 0 7 % Other_1 Plane 2 2 Other_2 Plane 3 3 Other 3 Plane 4 4 Which is the best way to do this?