i'm making a for loop to creates and modifiy dataframes, and now i want to save them to my computer. I've tried with differents functions, but either way they don't save or just the last one is saved ( i have 66df). I'm new to R so maybe I'm missing something
my code looks like this
assign(paste0('output_df',sep = '_', i),df)
write_csv(output_df, file = '/output/data frame.csv')
does the assign(past0 change something ? do you have any idea what's wrong ?
paste. Try something likefile = paste0("/output/dataframe_", i, ".csv")