Dec-04-2021, 05:11 PM
I usually filter for data like this: df[df.somecolumn > 10]
However, I haven't been able to do this for a column I have in type "datetime.date"
If I do: df[df["date"] == "2020-11-30"]) I get nothing returned and no error message.
I have been googling for hours trying to fix this, so any input is welcome.
EDIT - I found a solution
I can do it like this: df[df["date"] == datetime.date(2020,11,30)])
I'm not sure why it can be done without this tweak for datetime64, but that format seems to be easier to use in this regard
However, I haven't been able to do this for a column I have in type "datetime.date"
If I do: df[df["date"] == "2020-11-30"]) I get nothing returned and no error message.
I have been googling for hours trying to fix this, so any input is welcome.
EDIT - I found a solution
I can do it like this: df[df["date"] == datetime.date(2020,11,30)])
I'm not sure why it can be done without this tweak for datetime64, but that format seems to be easier to use in this regard