I want to make a for loop where the seq is an array's elements.
So like I have an array like this:
int <- array(c(30,60,150,300,450,1500))
and I wanted that the first j is 30, second is 60 ...etc.
But when I obviosly tried this:
for (j in int)
this did not work.
How can I solve this?