Answers for "pandas.timestamp to datetime"

5

convert date time to date pandas

df['date_column'] = pd.to_datetime(df['datetime_column']).dt.date
Posted by: Guest on February-19-2021
0

pandas datetime to unix timestamp

dates = pd.to_datetime(['2019-01-15 13:30:00'])
(dates - pd.Timestamp("1970-01-01")) // pd.Timedelta('1s')  
# Int64Index([1547559000], dtype='int64')
Posted by: Guest on August-28-2020

Code answers related to "pandas.timestamp to datetime"

Python Answers by Framework

Browse Popular Code Answers by Language