This may seem menial, but it affects my productivity. I am using R in terminal mode on Linux. Unlike the Windows IDE, Linux limits the number of columns to 80, thus making harder the inspection of data sets. Is there a way to set the max number of columns?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

Here is a function I have in my ~/.Rprofile file:

wideScreen <- function(howWide=Sys.getenv("COLUMNS")) {
  options(width=as.integer(howWide))
}

Calling the function without the howWide argument sets the column to be the width of your terminal. You can optionally pass in the argument to set the width to an arbitrary number of your choosing.

Almost like Josh's suggestion, but less magic :-)

link|improve this answer
Less magic, but better. Nicely done. – Josh Reich Jul 23 '09 at 17:24
feedback

Set it with something like

options("width"=200)

which is in fact what I have in ~/.Rprofile. See help(options) for details.

link|improve this answer
feedback

Stealing an idea from Brendan O'Connor's util.R (http://github.com/brendano/dlanalysis/blob/master/util.R), you can get your R terminal to set the default width using the stty command. Remunging his script to work on linux, you get the following sexy 1 liner:

options(width=as.integer(system("stty -a | head -n 1 | awk '{print $7}' | sed 's/;//'", intern=T)))
link|improve this answer
1  
Damn that one liner is sexy. – JD Long Jul 23 '09 at 17:22
feedback

You can use the TK gui, I think the option was --ui=TK or something like this.

Or is it a hard requirement to use it in the terminal?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.