Answers for "pandas df combine date hour and minutes"

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

Code answers related to "pandas df combine date hour and minutes"

Python Answers by Framework

Browse Popular Code Answers by Language