次のようなforループがあるとします
for(n in 1:5) { #if(n=3) # skip 3rd iteration and go to next iteration cat(n) }
特定の条件が満たされた場合、次の反復にどのようにスキップしますか?
for(n in 1:5) { if(n==3) next # skip 3rd iteration and go to next iteration cat(n) }