Re: [Rd] CCF and ACF

2006-10-03 Thread Simone Giannerini
Thank you Gabor, by the way I have checked in the Matlab GARCH toolbox, the crosscorrelation function is reversed with respect to R, I think it would be useful for the users to have documented the way CCF is computed. Simone On 10/2/06, Gabor Grothendieck <[EMAIL PROTECTED]> wrote: > Using "ts" o

[Rd] Error in X11 (PR#9272)

2006-10-03 Thread frank . schaeffer
Full_Name: Frank Schäffer Version: 2.3.1 OS: Ubuntu 6.10 (Edgy Eft) Submission from: (NULL) (86.56.0.173) [EMAIL PROTECTED]:~$ R R : Copyright 2006, The R Foundation for Statistical Computing Version 2.3.1 (2006-06-01) ISBN 3-900051-07-0 R ist freie Software und kommt OHNE JEGLICHE GARANTIE. Si

Re: [Rd] Error in X11 (PR#9272)

2006-10-03 Thread Peter Dalgaard
[EMAIL PROTECTED] writes: > Full_Name: Frank Schäffer > Version: 2.3.1 > OS: Ubuntu 6.10 (Edgy Eft) > Submission from: (NULL) (86.56.0.173) > > > [EMAIL PROTECTED]:~$ R > > R : Copyright 2006, The R Foundation for Statistical Computing > Version 2.3.1 (2006-06-01) > ISBN 3-900051-07-0 > > R is

Re: [Rd] Possible bug in Rcons_vprintf

2006-10-03 Thread Jeffrey Horner
Martin Maechler wrote: > Thanks, Jeffrey, > > that (change) looks very logical, reasonable, ... > and I'll commit a patch to R-devel ASAP. > > On the other hand, I'm currently not intending to port the fix > to the currently "deep frozen" R-2.4-branch [because "you never know ..."] > unless you c

[Rd] developing a package with a name space

2006-10-03 Thread Erik Iverson
Hello - I'm currently maintaining an R package that uses a name space, and am also starting a new R package that will use a name space. According the the R News June 2003 issue, "Adding a name space to a package may complicate debugging code ... it is a good idea not to add a name space to a p

Re: [Rd] developing a package with a name space

2006-10-03 Thread Duncan Murdoch
On 10/3/2006 2:22 PM, Erik Iverson wrote: > Hello - > > I'm currently maintaining an R package that uses a name space, and am > also starting a new R package that will use a name space. > > According the the R News June 2003 issue, "Adding a name space to a > package may complicate debugging co

[Rd] Bug in warning() for condition objects (PR#9274)

2006-10-03 Thread dhinds
Full_Name: David Hinds Version: 2.4.0 OS: Windows XP Submission from: (NULL) (64.168.232.238) A (maybe naive) use of tryCatch to trap errors and report as warnings does not work, i.e.: x <- tryCatch(lm(xyzzy), error=warning) In src/library/base/R/stop.R, the warning() function contains the fo

[Rd] Display problem with named raw vectors

2006-10-03 Thread Herve Pages
Hi, I found that displaying a raw vector with long names is not as pretty as for other types of named vectors: > r <- charToRaw("Mz") > r [1] 4d 7a > names(r) <- c("M", "zz") > r M zz 4d 7a The names and the values are not aligned :-( > i <- as.inte