Re: [R] R Console Output

2014-06-30 Thread Cheryl Johnson
Local\Temp\RtmpqayKkJ/file00109.png" "C:\Users\CHERYL\AppData\Local\Temp\RtmpqayKkJ/file00110.png" "C:\Users\CHERYL\AppData\Local\Temp\RtmpqayKkJ/file00111.png" "C:\Users\CHERYL\AppData\Local\Temp\RtmpqayKkJ/file00112.png" "C:\Users\CHERYL\AppData\Local\Te

Re: [R] R Console Output

2014-06-30 Thread jim holtman
t to do it. On Mon, Jun 30, 2014 at 10:56 AM, Cheryl Johnson < johnson.cheryl...@gmail.com> wrote: > When I run code in R, my R console output stops before all the code has > complied. There are no error messages, but there must be an error > somewhere. Thanks in

[R] R Console Output

2014-06-30 Thread Cheryl Johnson
When I run code in R, my R console output stops before all the code has complied. There are no error messages, but there must be an error somewhere. Thanks in advance for any guidance. [[alternative HTML version deleted]] __ R-help@r

Re: [R] Console Output Formatting

2013-09-16 Thread Noah Silverman
Neal, I like this answer. Simple and clean. Don't know why I didn't think of that before. Thanks! -- Noah Silverman, M.S., C.Phil UCLA Department of Statistics 8117 Math Sciences Building Los Angeles, CA 90095 On Sep 4, 2013, at 3:12 PM, Neal Fultz wrote: > > print(1:100) > [1] 1 2

Re: [R] Console Output Formatting

2013-09-04 Thread Duncan Murdoch
On 13-09-04 5:56 PM, Noah Silverman wrote: Hi, Working with R, I often want to copy and paste some values somewhere else. (Its not worth saving a CSV file for a dozen or so entries.) Or, I may want to copy all the names of an object into some code. Besides the other suggestions, the data e

[R] Console Output Formatting

2013-09-04 Thread Noah Silverman
Hi, Working with R, I often want to copy and paste some values somewhere else. (Its not worth saving a CSV file for a dozen or so entries.) Or, I may want to copy all the names of an object into some code. R, rather nicely, wraps output with an index number on the left side. For example: [1

Re: [R] Console Output Formatting

2013-09-04 Thread arun
,58,59,60 61,62,63,64,65 66,67,68,69,70 71,72,73,74,75 76,77,78,79,80 81,82,83,84,85 86,87,88,89,90 91,92,93,94,95 96,97,98,99,100 A.K. - Original Message - From: Noah Silverman To: R help Cc: Sent: Wednesday, September 4, 2013 5:56 PM Subject: [R] Console Output Formatting Hi, W

Re: [R] Console Output Formatting

2013-09-04 Thread Neal Fultz
> print(1:100) [1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > 16 17 18 19 20 21 22 23 24 25 26 [27] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 53 54 55 56 57 58 59 60 61 62 63 64 65 66

Re: [R] Console Output Formatting

2013-09-04 Thread Prof Brian Ripley
On 04/09/2013 22:56, Noah Silverman wrote: Hi, Working with R, I often want to copy and paste some values somewhere else. (Its not worth saving a CSV file for a dozen or so entries.) Or, I may want to copy all the names of an object into some code. R, rather nicely, wraps output with an ind

Re: [R] Console Output Formatting

2013-09-04 Thread Steve Friedman
Depending on the OS you are working with awk or gawk are great utilities for stripping columns from files. Also if you use a spreadsheet it is quite easy to drop a column. On Sep 4, 2013 5:59 PM, "Noah Silverman" wrote: > Hi, > > Working with R, I often want to copy and paste some values somewhe

Re: [R] Capture R-Console Output to Excel with RExcel

2011-08-11 Thread David Winsemius
On Aug 11, 2011, at 7:46 AM, Meier Dario wrote: Hello All I've just started to use RExcel instead of CMD Batches. But I don't get the console output to an data.frame and push to Excel. With the CMD batch you got the console out relatively easy with C:\LocalData\R\bin\R CMD BATCH --slave %

[R] Capture R-Console Output to Excel with RExcel

2011-08-11 Thread Meier Dario
Hello All I've just started to use RExcel instead of CMD Batches. But I don't get the console output to an data.frame and push to Excel. With the CMD batch you got the console out relatively easy with C:\LocalData\R\bin\R CMD BATCH --slave %rscript% %logfile% to a file. But how can I get it to

Re: [R] Console output

2011-02-21 Thread Ivan Calandra
It's nice to see all those solutions, but I'm wondering how it would be helpful to have the display like this. I'm a bit curious because for me the R output formatting is not very important. Ivan Le 2/21/2011 15:09, (Ted Harding) a écrit : On 21-Feb-11 13:55:24, Peter Ehlers wrote: On 2011-0

Re: [R] Console output

2011-02-21 Thread Ted Harding
On 21-Feb-11 13:55:24, Peter Ehlers wrote: > On 2011-02-21 04:21, Antje Niederlein wrote: >> Thanks for every helpful answer :-) ! >> I thought it was something "easier" but as long as there is a solution >> it's fine for me. >> >> Ciao, >> Antje > > Here's one more that I use: > > cat( 1:10, sep

Re: [R] Console output

2011-02-21 Thread Peter Ehlers
On 2011-02-21 04:21, Antje Niederlein wrote: Thanks for every helpful answer :-) ! I thought it was something "easier" but as long as there is a solution it's fine for me. Ciao, Antje Here's one more that I use: cat( 1:10, sep="\n" ) But this won't give you the row numbers. [I keep a functio

Re: [R] Console output

2011-02-21 Thread Antje Niederlein
Thanks for every helpful answer :-) ! I thought it was something "easier" but as long as there is a solution it's fine for me. Ciao, Antje On 21 February 2011 13:12, Martin Maechler wrote: >> Ted Harding >>     on Mon, 21 Feb 2011 11:08:19 - (GMT) writes: > >    > That doesn't pro

Re: [R] Console output

2011-02-21 Thread Martin Maechler
> Ted Harding > on Mon, 21 Feb 2011 11:08:19 - (GMT) writes: > That doesn't produce quite what Antje asked for (since each > line gets number "[1]"). The following does work: > print(cbind(NULL,(1:10))) > [,1] > [1,]1 > [2,]2 > [3,]3 >

Re: [R] Console output

2011-02-21 Thread Ted Harding
That doesn't produce quite what Antje asked for (since each line gets number "[1]"). The following does work: print(cbind(NULL,(1:10))) [,1] [1,]1 [2,]2 [3,]3 [4,]4 [5,]5 [6,]6 [7,]7 [8,]8 [9,]9 [10,] 10 (apart from the unwanted column-name "[,

Re: [R] Console output

2011-02-21 Thread Yves REECHT
Hi, You may try invisible(sapply(1:10, print)) Yves Le 21/02/2011 11:21, Antje Niederlein a écrit : > Hi there, > > I though there has been a possibility to force the output on the > console with one element per line. Instead of this: > >> 1:10 > [1] 1 2 3 4 5 6 7 8 9 10 > > s

Re: [R] Console output

2011-02-21 Thread John Kane
c) df1 === --- On Mon, 2/21/11, Antje Niederlein wrote: > From: Antje Niederlein > Subject: [R] Console output > To: r-help@r-project.org > Received: Monday, February 21, 2011, 5:21 AM > Hi there, > > I though there has been a possibility to force the output

[R] Console output

2011-02-21 Thread Antje Niederlein
Hi there, I though there has been a possibility to force the output on the console with one element per line. Instead of this: > 1:10 [1] 1 2 3 4 5 6 7 8 9 10 something like this > 1:10 [1] 1 [2] 2 [3] 3 [4] 4 [5] 5 [6] 6 [7] 7 [8] 8 [9] 9 [10] 10 Can anybody help

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Henrik Bengtsson
Just to get the message through that some already tried, e.g. on Windows 7 with R (Rterm) you get: > cat("\u2591","\u2592","\u2593") ¦ ¦ ¦> > See it didn't even cut'n'paste the same visual symbols as I see in Rterm but I guess you cannot see that. Make sense? No? Point is, expect issues if yo

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread David Winsemius
On Nov 19, 2010, at 11:45 AM, Jeff Newmiller wrote: The glyphs displayed depend on the "terminal" you are using, which may be operating-system dependent. Beware of assuming that other people will see the same things you do in their consoles. On a Mac this: > cat("\u2591","\u2592","\u259

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Jeff Newmiller
The glyphs displayed depend on the "terminal" you are using, which may be operating-system dependent. Beware of assuming that other people will see the same things you do in their consoles. "Mark Heckmann" wrote: >just found it out. >to get an overview: > >for (i in 2590:3000) > cat(eval

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Mark Heckmann
just found it out. to get an overview: for (i in 2590:3000) cat(eval(parse(text=paste("\"\\u", i, "\"", sep="" Thanks, Mark Am 19.11.2010 um 17:24 schrieb Henrique Dallazuanna: > In the plot window: > > plot(1, main = "\u2591\u2592\u2593") > > > On Fri, Nov 19, 2010 at 2:02 PM, Mark

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Mark Heckmann
is it also possible on the console? that is what i am actually interested in? Thanks in advance! Mark Am 19.11.2010 um 17:24 schrieb Henrique Dallazuanna: > In the plot window: > > plot(1, main = "\u2591\u2592\u2593") > > > On Fri, Nov 19, 2010 at 2:02 PM, Mark Heckmann > wrote: > Hi, > > can

Re: [R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Henrique Dallazuanna
In the plot window: plot(1, main = "\u2591\u2592\u2593") On Fri, Nov 19, 2010 at 2:02 PM, Mark Heckmann wrote: > Hi, > > can the R console print all extended ASCII characters? > I am especially interested in characters 176-178 from > http://www.asciitable.com/ > bottom table. > As far as I kn

[R] all extended ASCII characters exist for R console output?

2010-11-19 Thread Mark Heckmann
Hi, can the R console print all extended ASCII characters? I am especially interested in characters 176-178 from http://www.asciitable.com/ bottom table. As far as I know the character mapping in R is somewhat different (octal). So as I am not familiar with these things I am not sure if it

Re: [R] Capturing R console output into a file (sink+savehistory ??)

2010-05-22 Thread Duncan Murdoch
Tal Galili wrote: After reading more, I understand I didn't formulate my last question correctly, so please allow me to rephrase: What I am looking for is a way to save the R console session output. That is, a command that would combine the results of using: ?sink # And ?savehistory I thi

Re: [R] Capturing R console output into a file (sink+savehistory ??)

2010-05-22 Thread Tal Galili
Hello Duncan, David, and other R-help mailing list members. I found the solution using Greg Snow answer to this thread. I wanted to have that so to help a blind person who asked on the mailing list how to direct R output to word. I wrote up a solution, and wrapped it with words. It is now publi

[R] Capturing R console output into a file (sink+savehistory ??)

2010-05-22 Thread Tal Galili
After reading more, I understand I didn't formulate my last question correctly, so please allow me to rephrase: What I am looking for is a way to save the R console session output. That is, a command that would combine the results of using: ?sink # And ?savehistory My motivation for this is tha

Re: [R] miniscule font size on R console output

2008-05-08 Thread Yasir Kaheil
SE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. > > - Yasir H. Kaheil, Ph.D. Catchment Research Facility The University of Western Ontario -- View this message in context: http://www.

[R] miniscule font size on R console output

2008-05-08 Thread juanita choo
Hi, I am having a situation where I cannot change the output size of the R console. I have played around with the font format menu but the changes are only reflected to the script that I type in but not to the output. Everytime I run a script, I have to go back to font format to increase the outp