Hi everyone I'm working with 200 vectors like this:
x_1
x_2
x_3
.
.
x_200
So I wanted to make a for loop to change the value of each vector like this
for (i in 1:200){
x_i <- runif(1000,min = 0, max = 1)
}
But I don't know how to make r realize that I want to modify the i of the xi vector in each iteration.