Control {base} | R Documentation |
These are the basic control-flow constructs of the R language. They function in much the same way as control statements in any algol-like language.
if(cond) expr
if(cond) cons.expr else alt.expr
for(var in seq) expr
while(cond) expr
repeat expr
break
next
ifelse
,
switch
.
for(i in 1:5) print(1:i)