I need to include different numbers (result of a loop function) in the name of a data frame which I am trying to read at the same time. However, I do not know how.
Example, of what I am looking for are names of these dataframes:
data.1
data.2
data.3
An example of what I tried to do (which did not work, but illustrates better my question) is:
for (a in 1:3) data.(a) <- read.csv2(file.csv, header = TRUE)
Is it possible to include different numbers in the names of dataframes? If yes, how, please?
Sorry for beginner's question, but I have not found it anywhere.