Skip to content
Advertisement

Pandas: Get year to date dates from previous year

I want to compare the dates ranging from January 1st till the current day, from this year versus from last year.

example: get the rows with dates ranging from january 1st till november 29th 2020 get the rows with dates ranging from january 1st till november 29th 2021

here is what I have tryed doing, and the only way I picture it done:

JavaScript

and here is the output error:

JavaScript

I am fairly new to pandas and I don’t get why the error is about a date format mismatch since I made sure to use pd_todatetime, What is wrong with the processus I follow?

what would be alternative way to get that done without running in the same issue?

Advertisement

Answer

I think there’s an easier way to do this, I also think you should check if there are any leap years if you plan on using the code with more data.

JavaScript

Then you can easily select periods, given you have a datetime index.

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement