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?
|
feedback
|
|
Here is a function I have in my
Calling the function without the Almost like Josh's suggestion, but less magic :-) | |||
|
feedback
|
|
Set it with something like
which is in fact what I have in ~/.Rprofile. See help(options) for details. | |||
|
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:
| |||||
feedback
|
|
You can use the TK gui, I think the option was Or is it a hard requirement to use it in the terminal? | |||
|
feedback
|