I’d like to filter a df
by date. But I would like all the values with any date before today’s date (python).
For example from the table below, I’d like the rows that have a date before today’s date (i.e. row 1 to row 3).
ID | date |
---|---|
1 | 2022-03-25 06:00:00 |
2 | 2022-04-25 06:00:00 |
3 | 2022-05-25 06:00:00 |
4 | 2022-08-25 06:00:00 |
Thanks
Advertisement
Answer
You can try this?
JavaScript
x
4
1
from datetime import datetime
2
3
df[df['date'] < datetime.now()]
4
Output:
JavaScript
1
5
1
ID date
2
0 1 2022-03-25 06:00:00
3
1 2 2022-04-25 06:00:00
4
2 3 2022-05-25 06:00:00
5