I have two dataframes:
df1 looks like with 2273780 other ID's:
id
XIZ92
DA8J0
df2 looks like with 29435 other COMR :
COMR
9868
9875
1234
I want a df3, that replicate all COMR for each ID, like this :
id COMR
XIZ92 9868
XIZ92 9875
XIZ92 1234
DA8J0 9868
DA8J0 9875
DA8J0 1234
I am sure that ther is an easy way but can't find my way around it. Thank you!