I have 2 large csv files that contain information about the same shops.
File1:
Dates1            Sales
02-11-2017        100
04-11-2017        90
01-08-2016        80
01-02-2013        99
01-09-2016        12
File2:
Dates2            Stores
02-11-2017        A
04-11-2017        B
01-09-2016        C
What I need is find the matching dates and create the following table:
NewDates          Stores  Sales
02-11-2017        A       100
04-11-2017        B       90
01-09-2016        C       12 
The files have different number of rows and the same date can be contained in a different row in the respecting file. Can you please help me solve this in R?
 
    