I want to save variables with different names. I made simplified form of my code.
a <- runif(10, 1, 10)
for (i in 1:10)
{
b = a[i]
}
I want to save variables with names such as b_1, b_2, b_3, b_4, ... b_10.
How can I change the variable names.
I think this might be simple, but...do not know. Thank you in advance.