Answers for "MERGE 2 ROWS in pandas"

1

merge two columns name in one header pandas

df['A'] = df[a_cols].apply(' '.join, axis=1)
Posted by: Guest on August-17-2020
2

merge two columns pandas

df["period"] = df["Year"] + df["quarter"]
Posted by: Guest on May-10-2020

Python Answers by Framework

Browse Popular Code Answers by Language