1. List of a range of datetime objects
The best way to make a list of datetime objects or numpy array is to use this tip:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime, timedelta | |
base = datetime.today() | |
numdays = 5 | |
date_list = [base - timedelta(days=x) for x in range(0,numdays)] |
which creates a list of datetime objects from today going back a day until it hits the number of days range limit. You can change the - to a + to increment one day in the future, or change the days argument to hours, etc.
2. Convert list of datetime strings to python datetime objects
When you read in date and time data from a file, it will often come in as a string. Often, you'll read these in as a list. To convert that list of strings to a list of python datetime objects do this:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
dates = ['01/01/2016 04:50','01/01/2016 05:50','01/01/2016 06:50','01/01/2016 07:50'] | |
DATE = [datetime.strptime(x,'%m/%d/%Y %H:%M') for x in dates] |
3. Convert list of epoch times to python datetime objects
Alternatively, if the dates come in as a list of epoch times, use this...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# where dates is a list or numpy array of epoch dates... | |
DATE = [datetime.utcfromtimestamp(x) for x in dates] |
4. Convert list of datetime strings to python datetime objects using a numpy vectorized function
This method is slightly appears to be slightly faster than method discussed in 2.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import datetime | |
def datestr_to_datetime(x): | |
return datetime.datetime.strptime(x,'%Y-%m-%dT%H:%M:%SZ') | |
# where dates is some list of dates as a string... | |
# vectorize the function | |
converttime = np.vectorize(datestr_to_datetime) | |
DATES = converttime(dates) |
In the past I would create an empty array and append to it with a for loop like this...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATES = np.array([]) | |
for i in dates: | |
DATES = np.append(DATES,datetime.strptime(i,'%m/%d/%Y %H%M')) |