Suppose I have daily data from 2010 until 2020:
Ex:
Date col1
2010-01-01 False
2010-01-02 False
...
2020-12-31 False
I want to set col1 = True for all rows, where (month is equal 4 and day is bigger than 25) and month is equal to 5 and day is less then 5. So basically it means, that for all dates between 25th day of the 4th month and 5th day of the 5th month I want to set col1 = True.
How can I do it?