I have 2 dataframes, first many more rows than the second, and has a column like:
A
A
B
B
C
C
Second is like:
A, blue, 1
B, red, 2
C, yellow, 3
I want to merge them so that I get one dataframe that looks like:
A, blue, 1
A, blue, 1
B, red, 2
B, red, 2
C, yellow, 3
C, yellow, 3
How would I do this?