Re: [Rd] error: C stack usage is too close to the limit.

2008-05-27 Thread Prof Brian Ripley
Please look it up in 'Writing R Extensions'. Especially in the discussion around 'There is a potential issue with the stack-checking mechanism where threads are involved.' This is an issue for the author of RApache, who it seems has not turned off C stack checking in the version you are using

Re: [Rd] image (PR#11493)

2008-05-27 Thread Joseph Scandura
Sorry for lack of clarity in my original message but I'm new to this list and I couldn't find away to upload images. I am running Mac OS 10.5.2, R 2.7.0 The problem arrises when using anything that depends upon image() using the Quartz() device. This sounds very much like what you are descr

[Rd] error: C stack usage is too close to the limit.

2008-05-27 Thread jeroenooms
I am trying to set up a RApache server on my Ubuntu 8.04. I have installed apache2, R-2.7.0, and the RApache plugin. Both Apache and R seem to work fine, but whenever i try to use the plugin i get this error: C stack usage is too close to the limit. I have tried to recompile apache2, R, and RApac

Re: [Rd] make.packages.html - solved

2008-05-27 Thread Jonathan Baron
Found the solution. Perhaps it is specific to the RPM, but the file is now in /usr/share/doc/R-2.7.0/html/ Sorry. On 05/26/08 19:23, Jonathan Baron wrote: > It used to be that, whenever I added or updated a new package, the > file /usr/lib/R/doc/html/packages.html would be updated (on Linux). >

[Rd] solve cdf for noncentrality (PR#11527)

2008-05-27 Thread Jerry . Lewis
Full_Name: Jerry W. Lewis Version: 2.7.0 OS: Windows XP Professional Submission from: (NULL) (198.180.131.16) The current distribution function naming convention inherited from S (d*, p*, q*, r* for pdf/pmf, cdf, quantile, & random numbers) is inadequate for noncentral distributions, where there

Re: [Rd] image (PR#11493)

2008-05-27 Thread Simon Urbanek
Joseph, please try a more recent R, I have addressed the issue in R-devel/ R-2.7-patched after your report. Cheers, Simon On May 27, 2008, at 6:07 PM, Joseph Scandura wrote: Sorry for lack of clarity in my original message but I'm new to this list and I couldn't find away to upload images

Re: [Rd] Small request.

2008-05-27 Thread apjaworski
Sorry for the mix-up with Robert Murdoch. I do not know what I was thinking. I just wanted to clarify what would be useful to me. If possible, I would like to have some kind of indication on the website what "version" of Rtools28 (or some future Rtools) is the most current. This way, I would kn

Re: [Rd] Small request.

2008-05-27 Thread Gabor Grothendieck
As of a few weeks ago, rtools does store the current version in the registry but its only a gross figure such as 2.7 or 2.8 and that would not be enough to identify the build. On Tue, May 27, 2008 at 4:45 PM, <[EMAIL PROTECTED]> wrote: > > This is (hopefully) a small request. > > I routinely buil

[Rd] Small request.

2008-05-27 Thread apjaworski
This is (hopefully) a small request. I routinely build (and test) both R versions from sources on my system (WinXP). I would like to be sure that I have the current version of Rtools. I always go to Robert Murdoch's site "Building R for Windows" and check the latest news. Everything I need is

Re: [Rd] S4 generic for lowess

2008-05-27 Thread Oleg Sklyar
One can redefine range and similar ones (c, cbind, rbind etc) as S4 methods: :: R version 2.8.0 Under development (unstable) (2008-04-22 r45454) > setGeneric("range") [1] "range" > setClass("MyClass", representation("numeric",comment="character")) [1] "MyClass" > setMethod("range", "MyClass", fun

Re: [Rd] make.packages.html

2008-05-27 Thread Prof Brian Ripley
On Tue, 27 May 2008, Gabor Grothendieck wrote: On Tue, May 27, 2008 at 3:00 AM, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: On Mon, 26 May 2008, Jonathan Baron wrote: It used to be that, whenever I added or updated a new package, the file /usr/lib/R/doc/html/packages.html would be updated (o

Re: [Rd] sort - Windows and Linux

2008-05-27 Thread Prof Brian Ripley
This sort of thing does depend on the locale, but here I get the same answer on Windows and Linux (the order you give). So please give us much more complete information about what locales you used and what results you got. ?sort does say The sort order for character vectors will depend

Re: [Rd] sort - Windows and Linux

2008-05-27 Thread Gabor Grothendieck
This depends on the collating sequence of your locale. See ?Comparison On Tue, May 27, 2008 at 12:21 PM, Yohan Chalabi <[EMAIL PROTECTED]> wrote: > Dear all, > > While debugging a function I realized that > > sort(c(" 1", " 2", "10")) > > do not give the same result on Windows and Linux. > > This