[Rd] Incomplete ouput with sink and split=TRUE e.g. with writeLines (PR#10713)

2008-02-06 Thread jo . irisson
Full_Name: Jean-Olivier Irisson Version: 2.6.1 OS: OS X 10.5.1, Linux FC 8 Submission from: (NULL) (194.167.139.32) Example steps: > sink("test1.txt") > cat("foo\n") > writeLines("bar\n") > sink() > sink("test2.txt", split=T) > cat("foo\n") foo > writeLines("bar\n") > sink() And the content of

Re: [Rd] argument order for Math2 group functions in R 2.6.x (PR#10679)

2008-02-06 Thread Jeffrey J. Hallman
You could always define your own signif() as signif <- function(x, digits = 6){ base::signif(x, digits) } I do something like this for signif() and round() because economists don't like the round-to-even convention R uses. My round() function, for example, is: round <- function(x, digits = 0

Re: [Rd] R valgrind question

2008-02-06 Thread Daniel Oberski
> Various blocks of memory are not freed until the program is shut down, but > are in use up to that point so it is not a 'leak'. Most of the warnings > are not from R itself but from e.g. readline or X11, and all are tiny. That makes sense, thank you for clarifying. best regards, daniel __

Re: [Rd] (PR#10696) maybe a bug in the system.time() function?

2008-02-06 Thread Hin-Tak Leung
Alessandra Iacobucci wrote: > > On Feb 4, 2008, at 7:22 PM, Hin-Tak Leung wrote: > >> You will get yelled at by others for posting a question as a bug... >> (sigh). See FAQ. > > I am a non-member so my message should normally pass through a moderator. Your understanding is again wrong - AFAIK,

[Rd] codetools::checkUsage should ignore expression in Quote(expr) (PR#10719)

2008-02-06 Thread bill
Full_Name: Bill Dunlap Version: R version 2.7.0 Under development (unstable) (2008-02-05 r44340) OS: Linux Submission from: (NULL) (76.28.245.14) codetools::checkUsage() should treat the Quote() function just as it does the quote() and expression() functions: by ignoring its argument. Currently

[Rd] Building R for Windows

2008-02-06 Thread Earl F. Glynn
I have some C code (using an old Borland compiler) that calls a DLL that I'd like to get working from Windows and R (so I can read ABF files -- Axon Binary Files -- directly in R). I thought a good first approach would be able to build R in Windows, so that's what I'm trying to do. [I've don

Re: [Rd] Building R for Windows

2008-02-06 Thread Duncan Murdoch
On 06/02/2008 6:46 PM, Earl F. Glynn wrote: > I have some C code (using an old Borland compiler) that calls a DLL that > I'd like to get working from Windows and R (so I can read ABF files -- Axon > Binary Files -- directly in R). > > I thought a good first approach would be able to build R in