I have two datasets, containing information on Airbnb listings, based on those listings' IDs. The first dataset, "calendar", includes for every ID and every date for 365 days ahead, the price and the availability of the listing. It has 4159641 rows and 4 columns. The second data set, "Listings", includes for those same IDs several characteristics, like longitude, latitude, capacity, etc. It has 8903 rows and 9 variables.
Based on those common IDs I would like to combine the two datasets, so that all the information of the second data set "Listings" will be included to the first on "calendar". More precisely for every row of x listing data and price I want to include the information about longitude, latitude, capacity, etc. The dataset would then have 4159641 rows and 12 columns.
I would be really grateful to anyone who helps me with that.
Thank you!