Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

pandas query on datetime

from time import datetime

date_start = datetime(year_start, month_start, day_start)
date_end = datetime(year_end, month_end, day_end)

# df is your pandas dataframe
sel = df[(df['timestamp'] >= date_start) &
         (df['timestamp'] <= date_end)]

# tested with
# python 3.9.4
# pandas 1.3.2
 
PREVIOUS NEXT
Tagged: #pandas #query #datetime
ADD COMMENT
Topic
Name
7+3 =