Skip to content
Prev 170025 / 398506 Next

Loop on characters

Hi,

suppose I have three vectors like :

l1 = 1:4
l2 = 4:9
l3 = 16:67

now I want to construct a loop like :

for (i in 1:3)
   {
     count1[i] = length(li) # i.e. it will take l1, l2, l3 according to
value of i
   }

Can anyone please tell me how to do that?

Regards,