search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

Creating a range of dates in Pandas

schedule Aug 10, 2023
Last updated
local_offer
PythonPandas
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

To create a range of dates in Pandas, use the date_range(~) method, which returns a DatetimeIndex.

Specifying start and end

To create a sequence of dates starting from 2019-12-23 to 2019-12-25 (both ends inclusive):

pd.date_range(start="2019-12-23", end="2019-12-25")
DatetimeIndex(['2019-12-23', '2019-12-24', '2019-12-25'], dtype='datetime64[ns]', freq='D')

Specifying periods

To create a sequence of dates of length 3 starting from 2019-12-23:

pd.date_range(start="2019-12-23", periods=3)
DatetimeIndex(['2019-12-23', '2019-12-24', '2019-12-25'], dtype='datetime64[ns]', freq='D')

Starting from today

To create a sequence of dates of length 3 starting from today:

from datetime import datetime
pd.date_range(start=datetime.today(), periods=3)
DatetimeIndex(['2020-09-02 12:16:56.167947', '2020-09-03 12:16:56.167947',
'2020-09-04 12:16:56.167947'],
dtype='datetime64[ns]', freq='D')

If you want to strip away information about the time:

pd.date_range(start=datetime.today(), periods=3, normalize=True)
DatetimeIndex(['2020-09-02', '2020-09-03', '2020-09-04'], dtype='datetime64[ns]', freq='D')

Here, normalize=True resets the time unit of each datetime to midnight.

robocat
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
1
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!