[R] Set Conditional Breakpoint with setBreakpoint Function

2014-07-25 Thread marcel Austenfeld
Thank you very much. Exactly the information i needed. I always tried "quote(if (x > 10) browser())" and not "tracer=quote(if (x > 10) browser())" as the argument. Now it works. __ R-help@r-project.org mailing list https://stat.ethz.ch

Re: [R] Set Conditional Breakpoint with setBreakpoint Function

2014-07-25 Thread Duncan Murdoch
On 25/07/2014, 6:52 AM, marcel Austenfeld wrote: > >Hello, >i'm searching for a way to realize a conditional breakpoint. >setBreakpoint is a simple wrapper for the trace function. What i wan't to > do >is similar to the trace function >described here: >[1]http://www.stats.

[R] Set Conditional Breakpoint with setBreakpoint Function

2014-07-25 Thread marcel Austenfeld
Hello, i'm searching for a way to realize a conditional breakpoint. setBreakpoint is a simple wrapper for the trace function. What i wan't to do is similar to the trace function described here: [1]http://www.stats.uwo.ca/faculty/murdoch/software/debuggingR/debug.shtml "> trace