Re: [Rd] Is aggregate() function changing?

2009-03-25 Thread Kenneth Roy Cabrera Torres
Thank your Dr. Duncan Murdoch: Yes, you are right! I look for a "mean" variable and there it was!!! It seems to work on the non-patched 2.8.1 version because I start a new session on a diferent directory, and with the patched 2.8.1 I use an already created .Rdata where a "mean" variable exist wit

Re: [Rd] More Embedding REngine in Cocoa

2009-03-25 Thread Simon Urbanek
DAvid, On Mar 25, 2009, at 2:44 , David Zwerdling wrote: Hello once again, After locating the standalone REngine object set, I am having difficulty integrating them into the XCode project I intend to use them in. Suppose one started with the REngine standalone source and a blank XCode f

Re: [Rd] Error in FrF2 example on Mac OS

2009-03-25 Thread Simon Urbanek
On Mar 24, 2009, at 10:41 , Ulrike Grömping wrote: Petr Savicky wrote: On Tue, Mar 24, 2009 at 02:45:57PM +0100, Uwe Ligges wrote: gives the custom error message "nruns must be a power of 2.", which is generated in the first check within function FrF2: if (!is.null(nruns)){ k <-

[Rd] no internal function "int.unzip" in R 2.9 on Windows

2009-03-25 Thread audrey
Dear list, Using R 2.9, I have the following error on Windows when I try using .Internal(int.unzip(...)): > .Internal(int.unzip("test.zip",NULL, ".")) Error in .Internal(int.unzip("test.zip", NULL, ".")) : no internal function "int.unzip" The same error also happens with R 2.10 but not on R 2.

Re: [Rd] no internal function "int.unzip" in R 2.9 on Windows

2009-03-25 Thread Duncan Murdoch
On 3/25/2009 11:42 AM, aud...@ebi.ac.uk wrote: Dear list, Using R 2.9, I have the following error on Windows when I try using .Internal(int.unzip(...)): .Internal(int.unzip("test.zip",NULL, ".")) Error in .Internal(int.unzip("test.zip", NULL, ".")) : no internal function "int.unzip" The sa

Re: [Rd] no internal function "int.unzip" in R 2.9 on Windows

2009-03-25 Thread Uwe Ligges
aud...@ebi.ac.uk wrote: Dear list, Using R 2.9, I have the following error on Windows when I try using .Internal(int.unzip(...)): .Internal(int.unzip("test.zip",NULL, ".")) Error in .Internal(int.unzip("test.zip", NULL, ".")) : no internal function "int.unzip" The same error also happens

Re: [Rd] no internal function "int.unzip" in R 2.9 on Windows

2009-03-25 Thread audrey
Dear Duncan and Uwe, Thank you for your prompt answers. I will have a look at the unzip function and try to modify it to make it producing the output I want. Cheers, Audrey > On 3/25/2009 11:42 AM, aud...@ebi.ac.uk wrote: >> Dear list, >> >> Using R 2.9, I have the following error on Windows wh

[Rd] get_all_vars fails with matrices (PR#13624)

2009-03-25 Thread s . wood
Hi, According to the help file for model.frame/get_all_vars, the following should produce the same output from both functions, but it doesn't... > dat <- list(X=matrix(1:15,5,3),z=26:30) > model.frame(~z+X,dat) z X.1 X.2 X.3 1 26 1 6 11 2 27 2 7 12 3 28 3 8 13 4 29 4 9 14

[Rd] Listing of LAPACK error codes

2009-03-25 Thread Orlando Döhring
Professor Ripley commented on LAPACK error codes: https://stat.ethz.ch/pipermail/r-help/2007-March/127702.html and says "Internal LAPACK errors are usually problems with arithmetic accuracy, and as such are compiler- and CPU-specific." Is there a listing for the error codes from Lapack routine 'ds

[Rd] linking environments

2009-03-25 Thread Joerg Betzin
Dear R-helpers, I try to use nested R-functions as follows: help1 = function(){ x = 1 help2() } with help2 = function(){ if (x == 1) cat("Hello world x = 1") } If I compile these functions and run help1() an error message occurs Fehler in help2()

Re: [Rd] linking environments

2009-03-25 Thread Duncan Murdoch
On 3/25/2009 11:47 AM, Joerg Betzin wrote: Dear R-helpers, I try to use nested R-functions as follows: You didn't use nested functions. They would look like this: help1 <- function(){ help2 <- function(){ if (x == 1) cat("Hello world x = 1") } x <-

Re: [Rd] linking environments

2009-03-25 Thread Steven McKinney
> > -Original Message- > From: r-devel-boun...@r-project.org on behalf of Joerg Betzin > Sent: Wed 3/25/2009 8:47 AM > To: r-devel@r-project.org > Subject: [Rd] linking environments > > Dear R-helpers, > > I try to use nested R-functions as follows: Looks like a question for R-help,

Re: [Rd] get_all_vars fails with matrices (PR#13624)

2009-03-25 Thread Peter Dalgaard
s.w...@bath.ac.uk wrote: Hi, According to the help file for model.frame/get_all_vars, the following should produce the same output from both functions, but it doesn't... dat <- list(X=matrix(1:15,5,3),z=26:30) model.frame(~z+X,dat) z X.1 X.2 X.3 1 26 1 6 11 2 27 2 7 12 3 28 3

Re: [Rd] Listing of LAPACK error codes

2009-03-25 Thread Jason Riedy
And Orlando Döhring writes: > Is there a listing for the error codes from Lapack routine 'dsyevr'? The HTML-ized LAPACK functions are at http://www.netlib.org/lapack/explore-html/ although they may lag behind releases a little bit. The page for dsyevr.f is: http://www.netlib.org/lapack/explore-

Re: [Rd] Listing of LAPACK error codes

2009-03-25 Thread Prof Brian Ripley
On Wed, 25 Mar 2009, Orlando Döhring wrote: Professor Ripley commented on LAPACK error codes: https://stat.ethz.ch/pipermail/r-help/2007-March/127702.html and says "Internal LAPACK errors are usually problems with arithmetic accuracy, and as such are compiler- and CPU-specific." Is there a list

Re: [Rd] Error in FrF2 example on Mac OS

2009-03-25 Thread Ulrike Grömping
-- Original Message --- From: Simon Urbanek To: Ulrike Grömping Cc: r-devel@r-project.org Sent: Wed, 25 Mar 2009 10:32:59 -0400 Subject: Re: [Rd] Error in FrF2 example on Mac OS > On Mar 24, 2009, at 10:41 , Ulrike Grömping wrote: > > > > > > > Petr Savicky wrote: