Merge two data frames by common columns or row names, or do other versions of database join operations.
Say you have two data files that have the same columns in them (for example, two months worth of data from a database), but you want to combine them into one object in R so you can more easily visualise differences or trends.
Has advanced features for when you want to bring in multiple variables that might not match across the different data frames.
See how to merge data in R three different ways: with base R’s merge function, dplyr’s family of join functions, and the data.table package.