Re: [R] Controlling print width settings for 'print' on command line

2010-12-06 Thread Joshua Wiley
Hi Matt, I'm not certain if this will work with PuTTy, but in general (and on Konsole/other terminals I've run R in) you can set it with the "width" argument of options() see: ?options I believe it is 80 by default, so something like: options(width = 160) might be about right. Cheers, Josh

Re: [R] Controlling print width settings for 'print' on command line

2010-12-06 Thread Matthew Pettis
Worked perfect, thank you very much! Matt On Mon, Dec 6, 2010 at 11:53 PM, Joshua Wiley wrote: > Hi Matt, > > I'm not certain if this will work with PuTTy, but in general (and on > Konsole/other terminals I've run R in) you can set it with the "width" > argument of options() see: > > ?options >

[R] Controlling print width settings for 'print' on command line

2010-12-06 Thread Matthew Pettis
Hi, I'm using R interactively from a PuTTy command line, and when I print a dataframe (default, but just entering the name of the data frame), the display is using only half of the available horizontal width in which to print columns. How to I tell R how many columns it can/should use for printin