I have the next format for my date in my dataframe:
Typeof(DateTime("2021-12-17T06:00:00"))
Feather.Arrow.Timestamp{Microsecond}
I want to filter the data by date, but I can't because of the type. I tried to chop it, but again because of the type I couldn't.
MethodError: no method matching chop(::Feather.Arrow.Timestamp{Microsecond}; head=10, tail=2)
Closest candidates are:
chop(::AbstractString; head, tail) at strings/util.jl:184
So I tried to change the type using parse but it is not allowed. In R, I use filter and face no problem. What can I do?