I am trying to integrate data by merging two data-set in R, I am wondering if i can use the function merge() but i want to specify the column witch have the same information in one result column here is an example:
dataset 1 : |FirstName | LastName | Age | Eyes-color |
dataset 2 : |FN | LastName | Age | Gender |
i want to merge dataset 1 and dataset 2 in one dataset (dataset 3) and specifying that "FN" is same as "FirstName" so i want it to be one column so the result should be :
dataset 3 : |FirstName | LastName | Age | Eyes-color | Gender |