If I have a df that looks something like this:
v1 v2 ... v10 v11
id ...
102717.0 101234650 2018-08-27 ... NaN NaN
102717.0 101234650 2018-08-27 ... UDMS 27/08/2018
102717.0 101234650 2018-08-27 ... NaN NaN
102717.0 101234650 2018-08-27 ... UDMS 27/08/2018
So when the id col matches how could I combine these to just 1 row?
Desired output would be something like:
v1 v2 ... v10 v11
id ...
102717.0 101234650 2018-08-27 ... UDMS 27/08/2018
So the script would check for all values across each row that are repeated and then reduce it down filling any NaN values...