[Rd] HTML vignette browser

2007-06-01 Thread Deepayan Sarkar
Hi, this is tangentially related to the recent discussion on vignettes. vignette() currently produces a listing of available vignettes, but these are not clickable. Since R has a browseURL() function, it seems natural to have a version that produces HTML with clickable links. Here's an attempt at

[Rd] Debug with set.seed()

2007-06-01 Thread Tong Wang
HI, all I am debugging an R code with dynamically loaded function in it. It seems set.seed(n) does not give me the same random draws every time. Could somebody tell me what I should do to get the same outcome verytime ? I am not sure what infomation is relevent to this question , the f

Re: [Rd] Question on the R's C stack limit

2007-06-01 Thread Prof Brian Ripley
On Fri, 1 Jun 2007, Simon Urbanek wrote: > On Jun 1, 2007, at 5:44 AM, Ev Whin wrote: > >> Dear r-devel members, >> I encountered a C stack limit issue, when I tried to embed R >> 2.5 into my >> application. > > If you are embedding R, you can change or disable the stack limit by > setting R_C

Re: [Rd] Possible changes to connections

2007-06-01 Thread Stephen B. Weston
Prof Brian Ripley <[EMAIL PROTECTED]> writes: > [I know there is a call to getConnection in package gtools, but > the return value is unused!] Speaking of connections and gtools, I've been wondering if the gtools setTCPNoDelay function's method of getting the Unix file descriptor of a socket co

Re: [Rd] Question on the R's C stack limit

2007-06-01 Thread Simon Urbanek
On Jun 1, 2007, at 5:44 AM, Ev Whin wrote: > Dear r-devel members, > I encountered a C stack limit issue, when I tried to embed R > 2.5 into my > application. If you are embedding R, you can change or disable the stack limit by setting R_CStackLimit appropriately. There is no need to chan

Re: [Rd] Question on the R's C stack limit

2007-06-01 Thread Prof Brian Ripley
On Fri, 1 Jun 2007, Ev Whin wrote: > Dear r-devel members, >I encountered a C stack limit issue, when I tried to embed R 2.5 into my > application. In the R-exts document, it says:"Note that R's own front ends > use a stack size of 10Mb". I desire to know: is it possible to decrease this > sta

[Rd] Question on the R's C stack limit

2007-06-01 Thread Ev Whin
Dear r-devel members, I encountered a C stack limit issue, when I tried to embed R 2.5 into my application. In the R-exts document, it says:"Note that R's own front ends use a stack size of 10Mb". I desire to know: is it possible to decrease this stack size by modifying R's source code? If it's

Re: [Rd] Problem building R from source on Windows

2007-06-01 Thread Prof Brian Ripley
On Thu, 31 May 2007, Jonathan Swinton wrote: > > I have a problem when building R from source on Windows XP. > > When I get to 3.1.3 of the Installation and Administration manual and try > make all recommended > from R_HOME it fails with > make: *** No rule to make target `all'. Stop. But it is

[Rd] Problem building R from source on Windows

2007-06-01 Thread Jonathan Swinton
I have a problem when building R from source on Windows XP. When I get to 3.1.3 of the Installation and Administration manual and try make all recommended from R_HOME it fails with make: *** No rule to make target `all'. Stop. I am pretty sure there is an obvious and well documented thing I

Re: [Rd] Possible changes to connections

2007-06-01 Thread Byron Ellis
On 5/31/07, Bill Dunlap <[EMAIL PROTECTED]> wrote: > I like the idea of the connection being closed when there > are no more references to it. I guess that means when the > garbage collector notices it has been orphaned, which may > take a while. Although, playing devil's advocate, it Green Book