I have a dataframe as follows:
Machine Time Part PowerA PowerB
1 20:30 1 0.1 0.4
1 20:30 2 0.9 0.7
1 20:31 1 0.3 0.1
1 20:31 2 0.2 0.3
2 20:30 1 0.2 0.5
2 20:31 1 0.8 0.4
I want it to be like:
Machine Time Part1_PowerA Part1_PowerB Part2_PowerA Part2_PowerB
1 20:30 0.1 0.4 0.9 0.7
1 20:31 0.3 0.1 0.2 0.3
2 20:30 0.2 0.5 -1.0 -1.0
2 20:31 0.8 0.4 -1.0 -1.0
The objective is that I create a column for each Part
and Power
and fill the values as shown. Each machine has a variable number of parts, but the maximum is 8 (which would lead to columns Part8_PowerA
and Part8_PowerB
). When a machine doesn't have a certain part, the values for the Part_Power are filled with -1.
I have looked quite a while for solutions, including this one, but I wasn't able to adapt to my situation, where I actually change the names of the columns as a combination of a row value + already existent column.
Thanks!