I have a dataset of one column with 15000 unique Series_Ids. I want to create subset of the dataframe having 200 rows each and store it as separate dataframes. So there will be a total of 75 datasets.
I just cant think of how to approach this. One way I could do it is by indexing subsets of 200 rows by their row index but then I would have to do it 75 times.
Dont have any code as such. Im trying to make a function though.