Hello all, How can I increase/decrease the line length for screen wrapping? Currently when I run the following the output appears to wrap at just under 80 columns: > c(1:100) [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 [19] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 [37] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 [55] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 [73] 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 [91] 91 92 93 94 95 96 97 98 99 100 Is there any way to increase or decrease the default wrap length or perhaps force the output to the width of the screen? I had a look in the FAQ[1] and one of the manuals[2], but didn't see anything that mentioned line wrapping. Any pointers would be greatly appreciated. [1] http://cran.r-project.org/doc/FAQ/R-FAQ.html [2] http://cran.r-project.org/doc/manuals/R-intro.html Regards, - Robert http://www.cwelug.org/downloads Help others get OpenSource software. Distribute FLOSS for Windows, Linux, *BSD, and MacOS X with BitTorrent
?options see the width argument. Robert Citek wrote:> Hello all, > > How can I increase/decrease the line length for screen wrapping? > > Currently when I run the following the output appears to wrap at just > under 80 columns: > > > c(1:100) > [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > 16 17 18 > [19] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 > 35 36 > [37] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 > 53 54 > [55] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 > 71 72 > [73] 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 > 89 90 > [91] 91 92 93 94 95 96 97 98 99 100 > > Is there any way to increase or decrease the default wrap length or > perhaps force the output to the width of the screen? I had a look in > the FAQ[1] and one of the manuals[2], but didn't see anything that > mentioned line wrapping. > > Any pointers would be greatly appreciated. > > [1] http://cran.r-project.org/doc/FAQ/R-FAQ.html > [2] http://cran.r-project.org/doc/manuals/R-intro.html > > Regards, > - Robert > http://www.cwelug.org/downloads > Help others get OpenSource software. Distribute FLOSS > for Windows, Linux, *BSD, and MacOS X with BitTorrent > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >-- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu, Th) tel: (732) 512-0171 (M, W, F) fax: (917) 438-0894
[Robert Citek]>How can I increase/decrease the line length for screen wrapping?Check ?options, and within in, "width", it might be what you want. -- Fran?ois Pinard http://pinard.progiciels-bpi.ca
?options, look at width. On Thu, 4 May 2006, Robert Citek wrote:> Hello all, > > How can I increase/decrease the line length for screen wrapping? > > Currently when I run the following the output appears to wrap at just > under 80 columns: > > > c(1:100) > [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > 16 17 18 > [19] 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 > 35 36 > [37] 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 > 53 54 > [55] 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 > 71 72 > [73] 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 > 89 90 > [91] 91 92 93 94 95 96 97 98 99 100 > > Is there any way to increase or decrease the default wrap length or > perhaps force the output to the width of the screen? I had a look in > the FAQ[1] and one of the manuals[2], but didn't see anything that > mentioned line wrapping. > > Any pointers would be greatly appreciated. > > [1] http://cran.r-project.org/doc/FAQ/R-FAQ.html > [2] http://cran.r-project.org/doc/manuals/R-intro.html > > Regards, > - Robert > http://www.cwelug.org/downloads > Help others get OpenSource software. Distribute FLOSS > for Windows, Linux, *BSD, and MacOS X with BitTorrent > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >-- Brian D. Ripley, ripley at stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272866 (PA) Oxford OX1 3TG, UK Fax: +44 1865 272595