Hi I have two data frames. One with missing data that I would like to add from the other data frame which has complete data.
This is the first data frame with the complete data.
ID | Name | Age |
---|---|---|
012 | Dave | 45 |
013 | Colin | 63 |
014 | Dave | 52 |
This is the second database that I would like to join with the first and take the ID from the first using both the name and age column.
ID | Name | Age |
---|---|---|
Dave | 45 | |
Colin | 63 | |
Dave | 52 |