Hi there!
I am merging two data frames using this function:
merged <- merge(df1, df2[, c("var1", "var2", "var3")], all.x = TRUE, all.y = FALSE)
The final number of observations in merged
>
df1
.
Note: df1
has about 2,500,000 observations and df2
about 500.
Does anyone know what the problem could be?
Thank you!