I split an existing data frame into smaller data frames of sizes of 100. In a next step, I want to name all of those data frames so that all data frames have specific names:
This should look the following way: df1 should have the first 100 entries, followed by df2 with 101-201 and so on, how can I do that?
I thought of something like:
for i in range(0,len(df_total)):
paste("df",i,sep="") = df_total[i]
Unfortunately I always get the following error message: cannot assign to function call
Thank you for your help!