I am trying to create and name 26 variables( vectors). I can do the operation manually like this : a=c() ; b=c();c=c() ...z=c() . However ,that's not the most clever way to solve the issue. So, let's suppose that we have a list composed of {'a','b,'c',...'z'} and i want to create the variables a,b,c...z (empty vectors) . I'm thinking for a iterative loop :
for (variable in letters[1:26]){
variable=c()
}
I know that doing it this way won't work, that's why i couldn't figure out another way to solve it.
SOLVED: I got an answer for my main issue.