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
0
thumb_down
0
chat_bubble_outline
0
Comment auto_stories Bi-column layout
settings
Modifying dates in Pandas
schedule Aug 12, 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!
Replacing dates of Timestamp
To modify dates (Timestamp
) in Pandas, use the dt.replace(~)
helper method:
ts = pd.to_datetime("2020/12/25") # returns a Timestampts.replace(year=2025)
Timestamp('2025-12-25 00:00:00')
Note that since Timestamp
is immutable, a new Timestamp is returned and the original is kept intact.
Replacing dates in Series of datetime
Consider the following Series:
dates = pd.Series(pd.to_datetime(["2019/11/25","2020/12/26"]))dates
0 2019-11-251 2020-12-26dtype: datetime64[ns]
To iteratively modify each date (datetime64
) in dates
:
dates.map(lambda val: val.replace(year=2025))
0 2025-11-251 2025-12-26dtype: datetime64[ns]
Again, map(~)
returns a new Series and so the original dates
is kept intact.
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
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!