[R] Vector loop

2008-02-05 Thread mohamed nur anisah
hi, I'm in my learning process of doing a programming with for loop. How to make a loop of a vector of length 10 where elements are 1,2,3,4,5,6,7,8,9,10. Any suggestion needed!! Many thanks. Cheers, Anisah - [[alternative HTML

Re: [R] Vector loop

2008-02-05 Thread jim holtman
Not too sure of exactly what you want to do with the loop. Here is one that prints out the values: x - 1:10 for (i in x) print(i) [1] 1 [1] 2 [1] 3 [1] 4 [1] 5 [1] 6 [1] 7 [1] 8 [1] 9 [1] 10 On 2/5/08, mohamed nur anisah [EMAIL PROTECTED] wrote: hi, I'm in my learning process of doing a