If I have a dataset with three columns like this below
 Id    Date       Gender
 1     NA         F
 1     NA         NA
 1     03-11-1977 NA
 2     04-17-2005 NA
 2     NA         M
 3     NA         NA 
 3     06-04-1999 NA
 3     NA         F
How could I clean this data such that I see a dataset like this below ?
Id    Date        Gender
 1     03-11-1977 F
 2     04-17-2005 M
 3     06-04-1999 F
Thanks.
 
     
    