I'm trying to create a new data frame for each one of my loops in a for loop; but i can't seem to get a new data frame each time.
for(j in 1:10){
df_j = data.frame()
}
What I am trying to get is a bunch of new data frames in my environment.
df_1 df_2 df_3 df_4 df_5 df_6 df_7 df_8 df_9 df_10
Im quite new to coding, so any help will be appreciated, thanks.
When i tryied this it just made one data frame called 'df_j'.