I have DataFrame like this
A B C D 010 100 NaN 300 020 NaN 200 400 020 100 NaN NaN 030 NaN NaN 19 030 1 NaN NaN 040 NaN 2 1 How can I merge all rows that have duplicate (same value) in Column A so that other values fill the empty places?
End result
A B C D 010 100 NaN 300 020 100 200 400 030 1 NaN 19 040 NaN 2 1