Is it possible to create new variable names on the fly?
I\'d like to read data frames from a list into new variables with numbers at the end. Something like orca1, o
Use assign:
assign
assign(paste("orca", i, sep = ""), list_name[[i]])