Re: [Rd] bug with function seq() (PR#11705)

2008-06-16 Thread Gabor Csardi
See R FAQ 7.31 and also http://docs.sun.com/source/806-3568/ncg_goldberg.html G. On Mon, Jun 16, 2008 at 06:45:21PM +0200, [EMAIL PROTECTED] wrote: > Full_Name: Grégoire Talbot > Version: 2.7.0 > OS: windows 2000 > Submission from: (NULL) (147.99.1.149) > > > Try this : > > > a=seq(from=0.1,to

Re: [Rd] bug with function seq() (PR#11705)

2008-06-16 Thread Duncan Murdoch
On 6/16/2008 12:45 PM, [EMAIL PROTECTED] wrote: Full_Name: Grégoire Talbot Version: 2.7.0 OS: windows 2000 Submission from: (NULL) (147.99.1.149) Not a bug. See FAQ 7.31 (which should really be FAQ 1, I think.) Duncan Murdoch Try this : a=seq(from=0.1,to=1,by=0.1) a [1] 0.1 0.2 0.3 0.

Re: [Rd] R crashing (PR#11702)

2008-06-16 Thread Duncan Murdoch
On 6/16/2008 10:40 AM, [EMAIL PROTECTED] wrote: Full_Name: Songeeta Palchaudhuri Version: 2.7 OS: Windows XP Submission from: (NULL) (129.83.31.1) Hi, RGui crashes when I try to launch it from the Start Menu or any other shortcut placed on my Desktop. It used to work if I went the long way thro

[Rd] bug with function seq() (PR#11705)

2008-06-16 Thread talbot
Full_Name: Grégoire Talbot Version: 2.7.0 OS: windows 2000 Submission from: (NULL) (147.99.1.149) Try this : > a=seq(from=0.1,to=1,by=0.1) > a [1] 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0 Ok > a[1]==0.1 [1] TRUE Ok > a[3]==0.3 [1] FALSE !!! > a[3] [1] 0.3 !!! > a[3]=0.3 > a[3]==0.3 [1] T

[Rd] R crashing (PR#11702)

2008-06-16 Thread songeeta
Full_Name: Songeeta Palchaudhuri Version: 2.7 OS: Windows XP Submission from: (NULL) (129.83.31.1) Hi, RGui crashes when I try to launch it from the Start Menu or any other shortcut placed on my Desktop. It used to work if I went the long way through explorer and double clicked the exe file direc

Re: [Rd] Execute expr with a timeout?

2008-06-16 Thread Philippe Grosjean
Prof Brian Ripley wrote: See (R-devel) oExperimental setTimeLimit() function to set limits on the CPU and/or elapsed time for each top-level computation. Oh yes! Many thanks. Note that this is unfinished, and the interface may well change before release. OK, I can wait. Have a

Re: [Rd] Execute expr with a timeout?

2008-06-16 Thread Prof Brian Ripley
See (R-devel) o Experimental setTimeLimit() function to set limits on the CPU and/or elapsed time for each top-level computation. Note that this is unfinished, and the interface may well change before release. On Mon, 16 Jun 2008, Philippe Grosjean wrote: Hello, Does someone

[Rd] Execute expr with a timeout?

2008-06-16 Thread Philippe Grosjean
Hello, Does someone know how to execute an expression in R, limiting the time to evaluate it and raising an exception if it takes too long to run? Something like: > with.timeout(expr, timeout = 10) which stops the evaluation of 'expr' if it is not done after 10 sec? Best, Philippe Grosjean

Re: [Rd] c.noquote() weirdness

2008-06-16 Thread Prof Brian Ripley
Yes, it is misusing the ... argument to NextMethod. The first two arguments to c() match the first two arguments to NextMethod, the rest are set as additional arguments. Will fix for 2.7.1RC shortly. Thanks for the report. On Mon, 16 Jun 2008, Ray Brownrigg wrote: I haven't been able to ge