Suppose if this is my dataset
Id Name Score Fear Satisfaction
1 A 10 NA NA
1 B 11 NA NA
1 A NA 23.2 NA
1 B NA 34.1 NA
1 A NA NA 42.11
1 B NA NA 31.19
How can I cleanup this dataset such that all rows are aligned correctly like this below and there aren't too many unnecessary NAs like this below
Id Name Score Fear Satisfaction
1 A 10 23.2 42.11
1 B 11 34.1 31.19
I apologize if I was unable to explain this more accurately but I assume the example should help. Thanks in advance.