Skip to content

Instantly share code, notes, and snippets.

@FranjoIM
Created April 8, 2020 04:25
Show Gist options
  • Save FranjoIM/37ae21dd2900578d28657e697f875f8b to your computer and use it in GitHub Desktop.
Save FranjoIM/37ae21dd2900578d28657e697f875f8b to your computer and use it in GitHub Desktop.
VLOOKUP in R: This function allows to fill one table using the values from another table
# Load a library necessary to run this code
library(plyr)
# Run the code on the dataframes
CombinedDF <- join(MainDF, LookUpDF, by = "Column")
head(CombinedDF)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment