web-dev-qa-db-fra.com

R pour la boucle passez à la prochaine itération ifelse

Supposons que vous ayez une boucle comme celle-ci

for(n in 1:5) {
  #if(n=3) # skip 3rd iteration and go to next iteration
  cat(n)
}

Comment passer à la prochaine itération si une certaine condition est remplie?

73
alki
for(n in 1:5) {
  if(n==3) next # skip 3rd iteration and go to next iteration
  cat(n)
}
128
Alexey Ferapontov