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?
for(n in 1:5) {
if(n==3) next # skip 3rd iteration and go to next iteration
cat(n)
}