I have two data.frames similar to these:
#Dt1
Id Date Weight
1 2 10
2 3 20
3 4 30
4 4 30
5 6 40
and
#DT2
Id Date Weight late
1 2 10 3
2 3 20 4
3 4 30 5
8 5 10 6
I would like to merge these files considering only the different ID between them like this:
#Dt.final
Id Date Weight late
4 4 30 NA
5 6 40 NA
8 5 10 6
My originals files are bigger than these, thanks.