search for: compute_stuff

Displaying 1 result from an estimated 1 matches for "compute_stuff".

2013 Feb 26
3
Running R scripts with interactive-style evaluation
Hi, when running a R-script like this: enable_magic() compute_stuff() disable_magic() the whole script is parsed into a single expression and then evaluated, whereas when using the interactive shell after each line entered, a REPL loop happens. Is there a way to make a script evaluation behave like this, because I need a single REPL iteration for every expression...