How to slice pandas framework based on datetime column
I have a pandas framework with a time column that looks like this:
data.ts_placed
Out[68]:
1 2008-02-22 15:30:40
2 2008-03-20 16:56:00
3 2008-06-14 21:26:02
4 2008-06-16 10:26:02
5 2008-06-23 20:41:03
6 2008-07-17 08:02:00
7 2008-10-13 12:47:05
8 2008-11-14 09:20:33
9 2009-02-23 11:24:18
10 2009-03-02 10:29:19
I would like to slice the dataframe by deleting all rows before 2009
+3
source to share
1 answer
You can use simple string comparison to compare values ββwith a year string:
In [63]:
df.loc[df['date'] >= '2009']
Out[63]:
date
index
9 2009-02-23 11:24:18
10 2009-03-02 10:29:19
Or use an attribute dt
to access the year:
In [64]:
df.loc[df['date'].dt.year >= 2009]
Out[64]:
date
index
9 2009-02-23 11:24:18
10 2009-03-02 10:29:19
+8
source to share