I have a number of tables in R studio, named "zero.cells
", "one.cells
" (etc) up to "fifteen.cells
".
I would like to write all of these tables in csv using write.csv2
, for example write.csv2(zero.cells, file = "zero.cells.csv")
Is there a loop I can use to get this done rather than having to write all of this out for every single file? Thanks!