Skip to content
Prev 26057 / 398502 Next

for-loop ?

On Friday 06 December 2002 05:27 pm, Christian Schulz wrote:
You probably want to do


test <- numeric(30)

for (i in 1:30) {
    test[i] <- healthy(i)
}

-Deepayan