This is hopefully a simple question, but I'm not too familiar with the different types of joins/merges.
I have a table that looks like this:
ice cream code
chocolate ZYX
vanilla GRB
orange YUK
I essentially want to add another column, or alternatively merge with another dataframe, so that the final result will alternate between the values from this column
Let's say the other dataframe I'm merging with is just a single column called bi_num with two rows: 0 and 1
The final result should be:
ice cream code bi_num
chocolate ZYX 0
chocolate ZYX 1
vanilla GRB 0
vanilla GRB 1
orange YUK 0
orange YUK 1