I tried combining two dataframess with one having less rows and than the other like Column1 is in 1st dataframe and Column 2 is in 2nd dataframe -
Column 1 Column 2
A a
B b
c
d
what I wanted to do was 8 rows in total after combining with rows mapped as (this is a new dataframe) -
A a
A b
A c
A d
B a
B b
B c
B d
I searched for joins and concat and merge but I wasn't able to accomplish this. Any help please, thanks. I'm really very sorry for bad formatting.