web-dev-qa-db-ja.com

R forループは次の反復ifelseにスキップします

次のようなforループがあるとします

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

特定の条件が満たされた場合、次の反復にどのようにスキップしますか?

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