I have two dataframes df1 and df2. Both have a common identifier column.
df1 has unique lines for each identifier. But has identifier values that are not in df2.
df2 has multiple lines for each identifier value.
I want to merge the two so that I preserve the number of rows of df2, but map the (repeating) relevant ID rows from df1 into df2.
Is is best to use merge or join or something else? What arguments?
Thanks :)