Читать книгу The Big R-Book - Philippe J. S. De Brouwer - Страница 145
Example: While loop
Оглавлениеx <- c(1,2); c <- 2 while (c < 4) { print(x+c) c <- c + 1 } ## [1] 3 4 ## [1] 4 5
x <- c(1,2); c <- 2 while (c < 4) { print(x+c) c <- c + 1 } ## [1] 3 4 ## [1] 4 5