I have a data frame in with data as follows
Col1 Col2
20 NA
25 NA
15 NA
NA 10
NA 15
and so on... I am looking to reshape it as follows
Col1 Col2
20 10
25 10
15 10
15 10
15 15
Basically to forward or backward fill NA values with the first occurring non NA value. I tried a variation of Carry last Factor observation forward and backward in group of rows in R, but was unable to get it to work... Thanks in advance!