मान लीजिए कि आपके पास एक लूप है जैसे
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)
}
?Control
इसी तरह की विशेषताओं के लिए देखें
for(n in 1:5) { if(n==3) print ('3rd iteration' ) next # skip 3rd iteration and go to next iteration cat(n) }
करना चाहता हूं जिसका अर्थ है कि मैं यह छापना चाहता हूं कि मैं 3 पुनरावृति को छोड़ दूंगा, कुछ मामलों में कारण हमें रिकॉर्ड करने की आवश्यकता है जो हमने चीजों को रखने योग्य है।
if
इस तरह के बयान के लिए अतिरिक्त कोष्ठक की आवश्यकता होगीfor(n in 1:5) { if(n==3) { print ('3rd iteration' ) ; next } # skip 3rd iteration and go to next iteration cat(n) }
for(n in 1:5){if(n!=3){cat(n)}}