I am working with two data frames that I joined using
df = pd.concat([hc,nh], ignore_index=True, sort=False)
and now need to combine a few like-columns. For example:
Country Country_ID
1
2
3
4
How do I make it so it'd look like this:
Country
1
2
3
4
I saw this post that is a similar question to mine, but the answer there didn't work for me...