Re: looking for IDE advice or workflow tips

2008-08-06 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : I'm a novice developer at best and often work with the R statistical programming language. I use an editor called TINN-R which allows me to write a script, then highlight a few lines and send them to the interpreter. I am using pythonwin and it lacks this funtionality

Re: looking for IDE advice or workflow tips

2008-08-04 Thread William Pursell
On 4 Aug, 19:08, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm a novice developer at best and often work with the R statistical > programming language. I use an editor called TINN-R which allows me to > write a script, then highlight a few lines and send them to the > interpreter. I am using

Re: looking for IDE advice or workflow tips

2008-08-04 Thread Ralf Schönian
[EMAIL PROTECTED] schrieb: I'm a novice developer at best and often work with the R statistical programming language. I use an editor called TINN-R which allows me to write a script, then highlight a few lines and send them to the interpreter. I am using pythonwin and it lacks this funtionality (

Re: looking for IDE advice or workflow tips

2008-08-04 Thread Terry Reedy
[EMAIL PROTECTED] wrote: I'm a novice developer at best and often work with the R statistical How does one check small blocks of code without typing them each time, running an entire script (with other code) or creating a small script for every code block? For example say lines 1-100 work f

Re: looking for IDE advice or workflow tips

2008-08-04 Thread Olexandr Melnyk
If you split your code into functions (what you should really do), you can use a simple unit-testing like setup: make a caller script for every function, so you can test them separately. On 8/4/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'm a novice developer at best and often work with

Re: looking for IDE advice or workflow tips

2008-08-04 Thread Jeff
On Aug 4, 2:08 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm a novice developer at best and often work with the R statistical > programming language. I use an editor called TINN-R which allows me to > write a script, then highlight a few lines and send them to the > interpreter. I am usi