Answers for "join two dataframes pandas different date format"

2

pd combine date time

If df.Date and df.Time are of type str:
pd.to_datetime(df.Date + ' ' + df.Time)

If df.Date and df.Time are of type datetime.date and datetime.time respectively:
pd.to_datetime(df.Date.astype(str) + ' ' + df.Time.astype(str))
Posted by: Guest on April-28-2021
9

combining 2 dataframes pandas

df_3 = pd.concat([df_1, df_2])
Posted by: Guest on May-13-2020

Code answers related to "join two dataframes pandas different date format"

Python Answers by Framework

Browse Popular Code Answers by Language