I have a dataframe df with NA values in between. Can I fill those NA values with specific column values
df
COlA COlB ColC
1 df 3
1 fsg 4
1 sdf 5
1 sd 6
NA NA 67
NA NA 54
2 adf 13
2 afsg 14
2 asdf 15
2 asd 16
NA NA 77
NA NA 84
Expected output
df
COlA COlB ColC
1 df 3
1 fsg 4
1 sdf 5
1 sd 6
1 NA 67
1 NA 54
2 adf 13
2 afsg 14
2 asdf 15
2 asd 16
2 NA 77
2 NA 84
So Is it possible to fill COLA with the above values?