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
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
> 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
__
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,
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
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
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