Re: [R] R TERMINAL Vs R GUI

2009-07-04 Thread jim holtman
I just ran a test with a couple of my scripts and they took the same amount of CPU time in both Rterm and RGUI. (37.2 CPU sec on Rterm and 37.1 CPU sec on RGUI). Elapsed times were the same and memory usage was similar. It would be helpful to provide some more information. For example, do the fo

Re: [R] R TERMINAL Vs R GUI

2009-07-04 Thread vinay_rk
Hi I send commands to R using an IDE. Configured a few hotkeys to send the commands to R. I am using Tinn-R and it has options to open a RGUI or RTerm. My datasets are in the range of 600 MB - 2GB and I generally use scan() or filehash to work on such data sets. However there are times when I

Re: [R] R TERMINAL Vs R GUI

2009-07-04 Thread jim holtman
Exactly what are you doing and how are you 'sending' in the commands? Are you doing a cut/paste to the RGUI? If so, have you tried 'source'? I use RGUI all the time and have no performance/memory problems with executing scripts; I always 'source' in most of the scripts. Some more detail on exact

Re: [R] R-Terminal

2008-03-05 Thread Martin Elff
On Wednesday 05 March 2008 (12:56:17), Martin Kaffanke wrote: > Thats really great, but now the sink() uses also this width. Is it > possible to make sink using another width (i.e. 80 characters)? # auto width adjustment .adjustWidth <- function(...){   options(width=Sys.getenv("COLUMNS"))

Re: [R] R-Terminal

2008-03-05 Thread Martin Kaffanke
Thats really great, but now the sink() uses also this width. Is it possible to make sink using another width (i.e. 80 characters)? Thanks, Martin Am Dienstag, den 04.03.2008, 13:23 +0100 schrieb Martin Elff: > On Tuesday 04 March 2008 (12:34:47), Peter Dalgaard wrote: > > Martin Kaffanke wrote:

Re: [R] R-Terminal

2008-03-04 Thread Gabor Csardi
On Tue, Mar 04, 2008 at 01:18:43PM +0100, Martin Kaffanke wrote: > > Am Dienstag, den 04.03.2008, 12:34 +0100 schrieb Peter Dalgaard: > > Martin Kaffanke wrote: > > > Hi there! > > > > > > I use an gnome-terminal for using R. When I resize the termial to the > > > maximum size, R uses only the le

Re: [R] R-Terminal

2008-03-04 Thread Martin Elff
On Tuesday 04 March 2008 (12:34:47), Peter Dalgaard wrote: > Martin Kaffanke wrote: > > Hi there! > > > > I use an gnome-terminal for using R. When I resize the termial to the > > maximum size, R uses only the left side of the window. Can I tell R to > > use the whole window somehow? > > This see

Re: [R] R-Terminal

2008-03-04 Thread Martin Kaffanke
Am Dienstag, den 04.03.2008, 12:34 +0100 schrieb Peter Dalgaard: > Martin Kaffanke wrote: > > Hi there! > > > > I use an gnome-terminal for using R. When I resize the termial to the > > maximum size, R uses only the left side of the window. Can I tell R to > > use the whole window somehow? > > >

Re: [R] R-Terminal

2008-03-04 Thread Peter Dalgaard
Martin Kaffanke wrote: > Hi there! > > I use an gnome-terminal for using R. When I resize the termial to the > maximum size, R uses only the left side of the window. Can I tell R to > use the whole window somehow? > > This seems to do it: options(width=Sys.getenv("COLUMNS")) (Surpris

Re: [R] R-Terminal

2008-03-04 Thread Gabor Csardi
options(width=120) See ?options G. On Tue, Mar 04, 2008 at 12:04:54PM +0100, Martin Kaffanke wrote: > Hi there! > > I use an gnome-terminal for using R. When I resize the termial to the > maximum size, R uses only the left side of the window. Can I tell R to > use the whole window somehow? >