[Rd] Auto coverage too high r-bugs? Take a look (PR#8090)

2005-08-23 Thread exclude-me
This is a multi-part message in MIME format. 58736078_abAug1212 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit * If you are reading this text, you either do not have an HTML capable email client, or you choose not to view HTML emails by default.

Re: [Rd] compile R with Portland Group compiler

2005-08-23 Thread Prof Brian Ripley
regex.c is not our code, but from glibc. Could you please try R-devel instead, which has a later version of glibc. Since 2.1.1 is not longer part of the developement, we cannot help with that, but we can help wih R-devel. I see the later regex.c does use prototypes. But bitset is an integer

[Rd] Extended-Warranty for your vehicle r-bugs (PR#8088)

2005-08-23 Thread exclude-me
This is a multi-part message in MIME format. 58736078_abAug1180 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit * If you are reading this text, you either do not have an HTML capable email client, or you choose not to view HTML emails by default.

Re: [Rd] (PR#8087) NAs by integer overflow in Spearman's test p-value

2005-08-23 Thread ripley
There is an even simpler way: someone wrote n*(n^2-1) as n*(n-1)*(n+1) and caused the problem. Your superfluous semicolons do definitely make your code harder to read. On Tue, 23 Aug 2005 [EMAIL PROTECTED] wrote: > Full_Name: Jan T. Kim > Version: 2.1.0 (and better) > OS: Linux > Submission from

[Rd] compile R with Portland Group compiler

2005-08-23 Thread Jennifer Lai
Hi, Can anyone advise me on how to compile R with Portland Group compiler on a Opeteron machine with Red Hat Enterprise Linux WS release 4 installed? I've edit config.site file to pick portland group compilers instead of gcc. Here is the list of modified flags: CC=/usr/pgi/linux86-64/6.0/bi

[Rd] NAs by integer overflow in Spearman's test p-value (PR#8087)

2005-08-23 Thread jtk
Full_Name: Jan T. Kim Version: 2.1.0 (and better) OS: Linux Submission from: (NULL) (139.222.3.229) The p value in Spearman's test is NA if the length of x exceeds 46340, due to an integer overflow, occurring if length(n) > sqrt(2^31): > n <- 46341; > set.seed(1); > x <- runif(n);

Re: [Rd] weigths in boxplot

2005-08-23 Thread Martin Maechler
> "Erich" == Erich Neuwirth <[EMAIL PROTECTED]> > on Sun, 21 Aug 2005 18:51:20 +0200 writes: Erich> In R 2.2.0 density now can work with weighted Erich> obesrvations. It would be nice if boxplot also would Erich> accept a weight parameter, then one could produce Erich>

Re: [Rd] About R variable references

2005-08-23 Thread Duncan Temple Lang
Hi Markku. You have correctly diagnosed the problem that the initially set global variables "are not stable". In your call to myinit, you store a C-level reference to the var and func R objects. But you need to tell R's memory management that you need to hold onto them. Otherwise it is entitle

Re: [Rd] Which TEX for Wiindows

2005-08-23 Thread Gabor Grothendieck
On 8/23/05, Ales Ziberna <[EMAIL PROTECTED]> wrote: > I am intending to instal TEX (for use with R - building, checking packages) > on my WinXP SP2. I read that fptex is recomended, however > http://www.fptex.org/ is not not available. Is MiKTeX the next best choice? > Yes. Be sure to read: http

Re: [Rd] Which TEX for Wiindows

2005-08-23 Thread Prof Brian Ripley
On Tue, 23 Aug 2005, Ales Ziberna wrote: > I am intending to instal TEX (for use with R - building, checking packages) > on my WinXP SP2. I read that fptex is recomended, however > http://www.fptex.org/ is not not available. Is MiKTeX the next best choice? Please look at the current documentation

Re: [Rd] do.call(): no need for quote {was .. Questions about calls..}

2005-08-23 Thread Gabor Grothendieck
On 8/23/05, Martin Maechler <[EMAIL PROTECTED]> wrote: > > "Gabor" == Gabor Grothendieck <[EMAIL PROTECTED]> > > on Mon, 22 Aug 2005 18:55:38 -0400 writes: > > .. > >Gabor> Try do.call like this: > >Gabor> ff <- x ~ g*h >Gabor> do.call("substitute", list

[Rd] Which TEX for Wiindows

2005-08-23 Thread Ales Ziberna
I am intending to instal TEX (for use with R - building, checking packages) on my WinXP SP2. I read that fptex is recomended, however http://www.fptex.org/ is not not available. Is MiKTeX the next best choice? Thanks in advance for any suggestions! Ales Ziberna _

Re: [Rd] TCITex and R

2005-08-23 Thread Duncan Murdoch
[EMAIL PROTECTED] wrote: > Several times my packages have fallen foul of the latex check at the > uploading-to-CRAN stage, creating extra work for Kurt Hornik. I've never > bothered trying to get latex working on my own packages (happy with > vanilla help) but am told that "latex is the closest thi

Re: [Rd] Functions with the same name: best practices

2005-08-23 Thread Duncan Murdoch
hadley wickham wrote: > Ok, here's another best practices question - let's say I'm writing a > package and I want to use a function name that is already claimed by a > function in the base R packages. For the sake of argument, let's > pretend this function is for profiling the performance of a fun

[Rd] do.call(): no need for quote {was .. Questions about calls..}

2005-08-23 Thread Martin Maechler
> "Gabor" == Gabor Grothendieck <[EMAIL PROTECTED]> > on Mon, 22 Aug 2005 18:55:38 -0400 writes: .. Gabor> Try do.call like this: Gabor> ff <- x ~ g*h Gabor> do.call("substitute", list(ff, list(x = as.name("weight" Just a small remark: For all tho

Re: [Rd] IPC

2005-08-23 Thread Duncan Temple Lang
Sean O'Riordain wrote: > for very low bandwidth IPC I'd just use a standard web page form using > a GET... so all you have to do is call a URL with the parameters > embedded in the URL, e.g. > > http://silly.name.for.server.com/javaServlet?a=42&b=394&c=1982&d=complex > > If your bandwidth require

Re: [Rd] IPC

2005-08-23 Thread Duncan Temple Lang
Nigel Sim wrote: > Hi, I need to somehow make R communicate with another remote JAVA > process which provides compute services. I have control over the > communications protocol, but I would like to keep it to a standardised > protocol, such as SOAP, CORBA, etc. > > What I would like to know is,

Re: [Rd] Fetching Warning Messages

2005-08-23 Thread Henrik Bengtsson
Did you get my reply to you on Aug 13 on withCallingHandlers()? https://stat.ethz.ch/pipermail/r-devel/2005-August/034189.html /Henrik Nikhil Shah wrote: > Hi, > > I read the help page and saw that warnings() actually prints the warning > message and stores warning in top-level variable