If I have one dataframe (df) with:
Columnx Columny
1 NA
2 NA
3 NA
NA 4
NA 5
NA 6
and want
Column z
1
2
3
4
5
6
How can I do this in the simplest way possible? Essentially x and y are date columns, but due to a previous merge I have two date columns each filled with NA where the other is occupied, but only want one date column.