Guillaume STORCHI
2005-Mar-21 11:05 UTC
[R] menu() and continue a repeat loop without executing the code that follows the loop!!?
> first:I'd like to have the choice between breaking out a repeat loop or > continue it>> then: i'd would like my code after the end of my repeat loop not to be read > unless I type 2 (to continue executing the content of my repeat loop) THAT'S > THE PROBLEM > Is there any way to go straight out of the loop (like a "goto" associated toa> "label") or a pause like command to prevent R from reading the entirescript?? I actually have this kind of code reapeat{ ... ... ... switch(menu(c("continue to select points","modelling")),next,break) } ... ... With the right brackets, it doesn't work either! R read the entire code that follows the switch(...) when I choose "continue to select points" instead of ONLY reading the repeat loop. Guillaume Storchi