Pandas
keyboard_arrow_down 655 guides
chevron_leftTime Series Cookbook
Adding new column containing the difference between two date columnsCombining columns containing date and timeCombining columns of years, months and daysConverting a column of strings to datetimeConverting dates to stringsConverting datetime column to date and time columnsConverting DatetimeIndex to Series of datetimeConverting index to datetimeConverting UNIX timestamp to datetimeCreating a column of datesCreating a range of datesExtracting month and year from Datetime columnGetting all weekdays between two datesGetting all weekends between two datesGetting day unit from date columnGetting month unit from date columnGetting name of months in date columnGetting week numbers from a date columnGetting day of week of date columnsGetting year unit from date columnModifying datesOffsetting datetimeRemoving time unit from datesSetting date to beginning of monthSorting DataFrame by datesUsing dates as the index of a DataFrame
check_circle
Mark as learned thumb_up
1
thumb_down
1
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Converting UNIX timestamp to datetime in Pandas
schedule Aug 11, 2023
Last updated local_offer
Tags Python●Pandas
tocTable of Contents
expand_more Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!
Start your free 7-days trial now!
To convert UNIX timestamp to datetime, use Pandas to_datetime(~)
method.
Example
Consider the following DataFrame:
df = pd.DataFrame({"A":["1608854400","1609027200"]})df
A0 16088544001 1609027200
Here, column A
contains UNIX timestamps in seconds.
To convert column A
to type datetime64
:
pd.to_datetime(df["A"], unit="s")
0 2020-12-251 2020-12-27Name: A, dtype: datetime64[ns]
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
1
thumb_down
1
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!