I have a dataframe with 3000 rows, sorted by date, and 5 columns.
I need to slice this dataframe in several ones, of 251 days, using a loop. So the first one will have from day 1 to day 251, the 2nd one from day 2 to 252, and so on.
Then, I want to save it, so then I can iterate a function over it.
Can you please help me? Thanks in advance.
[SOLVED]