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
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.
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
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
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
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
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
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
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