am trying to get from the following dataframe:
DAY Col1 ColA ColB ColC
ID
ABC Mon A 123
DEF Mon A 456
GHI Mon A 789
ABC Tue A 123
DEF Tue A 456
GHI Tue A 789
ABC Wed A 123
DEF Wed A 456
GHI Wed A 789
into:
ID Mon Tue Wed
ABC 123 123 123
DEF 456 456 456
GHI 789 789 789
So the idea would be to remove the empty cells, and reclassify the columns into unique Days followed by the ID's corresponding value in that Day.
Appreciate any help I get, thanks!