r - Load a snippet of code into frames -


i have snippet of code this:

for(i in 1:4000000) {  #code } 

i load every 10000 until counter go 4000000

example:  for(i in 1:10000) {      #code     }   for(i in 10001:20000) {      #code     }  etc. 

is there simpler way have multiple for?


Comments

Popular posts from this blog

PHP and MySQL WP -

javascript - generate date range base on integers -

javascript - Generate barcode from text and convert it to base64 -