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? Thanks, Martin -- Ihr Partner f?r Webdesign, Webapplikationen und Webspace. http://www.roomandspace.com/ Martin Kaffanke +43 650 4514224 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Dies ist ein digital signierter Nachrichtenteil Url : https://stat.ethz.ch/pipermail/r-help/attachments/20080304/a6fbc514/attachment.bin
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? > > Thanks, > Martin > > -- > Ihr Partner f?r Webdesign, Webapplikationen und Webspace. > http://www.roomandspace.com/ > Martin Kaffanke +43 650 4514224[...] -- Csardi Gabor <csardi at rmki.kfki.hu> UNIL DGM
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")) (Surprisingly, at least to me, the COLUMNS environment variable appears to be automagically updated by gnome-terminal even after R is started. I was expecting to have to play with system("tset") and suchlike.) -- O__ ---- Peter Dalgaard ?ster Farimagsgade 5, Entr.B c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
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? > > > > > This seems to do it: > > options(width=Sys.getenv("COLUMNS"))Thats great! Is there something like an rc file where I can generally save this? lg, Martin -- Ihr Partner f?r Webdesign, Webapplikationen und Webspace. http://www.roomandspace.com/ Martin Kaffanke +43 650 4514224 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: Dies ist ein digital signierter Nachrichtenteil Url : https://stat.ethz.ch/pipermail/r-help/attachments/20080304/1a277ae6/attachment.bin
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 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")) > > Thats great! Is there something like an rc file where I can generally > save this?See ?Startup G.> lg, > Martin > > -- > Ihr Partner f?r Webdesign, Webapplikationen und Webspace. > http://www.roomandspace.com/ > Martin Kaffanke +43 650 4514224> ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- Csardi Gabor <csardi at rmki.kfki.hu> UNIL DGM