migue-s
8/4/2011 - 11:01 PM

R: For Loop

R: For Loop

theList <- c(1,2,3)

for (i in theList) {

    print(i)

}