Created
April 8, 2020 04:25
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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