I have two dataframe
as below:
Background Skin Body Face Head
value Beige Light Gray TribalNecklace Beard Bowl Cut
value Blue Normal BowTie Pink Blushing Durag Red.
and
Link
0 https://example.com
1 httpsl//example2.com
when joing two using below code:
df5 = pd.concat([df1, linkdf], axis=1, ignore_index=True)
df5
gives an error:
ValueError: Shape of passed values is (6, 6), indices imply (4, 6)
How do I join two dataframe
without getting that error? Thank you for helping in advance.