R foreach stop iteration at i











up vote
0
down vote

favorite
1












I am using R package foreach.
When bug exists in foreach block, it's hard to re-occur it and hard to debug.



Take the following script as example.
I want to stop at i=4 to check what's wrong. However, it stops at i=10.



Any solution?



library(foreach)
foreach(i = icount(10)) %do% {
if (i == 4){
e <- simpleError("test error")
stop(e)
}
}









share|improve this question


















  • 2




    Eventually you want use break ... (documentation of for (...))
    – jogo
    Nov 21 at 12:31












  • for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
    – Dongdong Kong
    Nov 21 at 13:02















up vote
0
down vote

favorite
1












I am using R package foreach.
When bug exists in foreach block, it's hard to re-occur it and hard to debug.



Take the following script as example.
I want to stop at i=4 to check what's wrong. However, it stops at i=10.



Any solution?



library(foreach)
foreach(i = icount(10)) %do% {
if (i == 4){
e <- simpleError("test error")
stop(e)
}
}









share|improve this question


















  • 2




    Eventually you want use break ... (documentation of for (...))
    – jogo
    Nov 21 at 12:31












  • for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
    – Dongdong Kong
    Nov 21 at 13:02













up vote
0
down vote

favorite
1









up vote
0
down vote

favorite
1






1





I am using R package foreach.
When bug exists in foreach block, it's hard to re-occur it and hard to debug.



Take the following script as example.
I want to stop at i=4 to check what's wrong. However, it stops at i=10.



Any solution?



library(foreach)
foreach(i = icount(10)) %do% {
if (i == 4){
e <- simpleError("test error")
stop(e)
}
}









share|improve this question













I am using R package foreach.
When bug exists in foreach block, it's hard to re-occur it and hard to debug.



Take the following script as example.
I want to stop at i=4 to check what's wrong. However, it stops at i=10.



Any solution?



library(foreach)
foreach(i = icount(10)) %do% {
if (i == 4){
e <- simpleError("test error")
stop(e)
}
}






r parallel-foreach






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 at 12:26









Dongdong Kong

197




197








  • 2




    Eventually you want use break ... (documentation of for (...))
    – jogo
    Nov 21 at 12:31












  • for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
    – Dongdong Kong
    Nov 21 at 13:02














  • 2




    Eventually you want use break ... (documentation of for (...))
    – jogo
    Nov 21 at 12:31












  • for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
    – Dongdong Kong
    Nov 21 at 13:02








2




2




Eventually you want use break ... (documentation of for (...))
– jogo
Nov 21 at 12:31






Eventually you want use break ... (documentation of for (...))
– jogo
Nov 21 at 12:31














for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
– Dongdong Kong
Nov 21 at 13:02




for (...) is not suit. Because foreach can be easily modified into parallel mode. modifying foreach into for every time when debugging, is a little tired.
– Dongdong Kong
Nov 21 at 13:02












1 Answer
1






active

oldest

votes

















up vote
1
down vote













One option to handle this is with a browser() inside a tryCatch as in:



foreach(i = icount(10)) %do% {
tryCatch(
if (i == 4){
e <- simpleError("test error")
stop(e)
},
error = function(e) browser()
)
}


This will produce a browser of the environment at the time of the error, which will allow you to inspect any objects and/or debug your code.



Your console will then look like the following and you can ask what the value of i is. Like this:



Browse[1]> i



[1] 4






share|improve this answer























  • It works. Thank you!
    – Dongdong Kong
    Nov 22 at 1:26











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412022%2fr-foreach-stop-iteration-at-i%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
1
down vote













One option to handle this is with a browser() inside a tryCatch as in:



foreach(i = icount(10)) %do% {
tryCatch(
if (i == 4){
e <- simpleError("test error")
stop(e)
},
error = function(e) browser()
)
}


This will produce a browser of the environment at the time of the error, which will allow you to inspect any objects and/or debug your code.



Your console will then look like the following and you can ask what the value of i is. Like this:



Browse[1]> i



[1] 4






share|improve this answer























  • It works. Thank you!
    – Dongdong Kong
    Nov 22 at 1:26















up vote
1
down vote













One option to handle this is with a browser() inside a tryCatch as in:



foreach(i = icount(10)) %do% {
tryCatch(
if (i == 4){
e <- simpleError("test error")
stop(e)
},
error = function(e) browser()
)
}


This will produce a browser of the environment at the time of the error, which will allow you to inspect any objects and/or debug your code.



Your console will then look like the following and you can ask what the value of i is. Like this:



Browse[1]> i



[1] 4






share|improve this answer























  • It works. Thank you!
    – Dongdong Kong
    Nov 22 at 1:26













up vote
1
down vote










up vote
1
down vote









One option to handle this is with a browser() inside a tryCatch as in:



foreach(i = icount(10)) %do% {
tryCatch(
if (i == 4){
e <- simpleError("test error")
stop(e)
},
error = function(e) browser()
)
}


This will produce a browser of the environment at the time of the error, which will allow you to inspect any objects and/or debug your code.



Your console will then look like the following and you can ask what the value of i is. Like this:



Browse[1]> i



[1] 4






share|improve this answer














One option to handle this is with a browser() inside a tryCatch as in:



foreach(i = icount(10)) %do% {
tryCatch(
if (i == 4){
e <- simpleError("test error")
stop(e)
},
error = function(e) browser()
)
}


This will produce a browser of the environment at the time of the error, which will allow you to inspect any objects and/or debug your code.



Your console will then look like the following and you can ask what the value of i is. Like this:



Browse[1]> i



[1] 4







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 21 at 17:31

























answered Nov 21 at 17:25









Ian Wesley

2,495525




2,495525












  • It works. Thank you!
    – Dongdong Kong
    Nov 22 at 1:26


















  • It works. Thank you!
    – Dongdong Kong
    Nov 22 at 1:26
















It works. Thank you!
– Dongdong Kong
Nov 22 at 1:26




It works. Thank you!
– Dongdong Kong
Nov 22 at 1:26


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412022%2fr-foreach-stop-iteration-at-i%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks