Re: [Rd] slow load() in R2.6.0

2007-10-10 Thread Prof Brian Ripley
On Thu, 11 Oct 2007, [EMAIL PROTECTED] wrote: > I'm encountering excruciatingly slow load times for character vectors in > R 2.6.0-- up to 30sec for a 15K file that contains a no-attributes > character vector of length ~1e4 and object size ~0.5MB. In R 2.5.1, > repeated loads of the same set of fi

[Rd] slow load() in R2.6.0

2007-10-10 Thread Mark.Bravington
I'm encountering excruciatingly slow load times for character vectors in R 2.6.0-- up to 30sec for a 15K file that contains a no-attributes character vector of length ~1e4 and object size ~0.5MB. In R 2.5.1, repeated loads of the same set of files are near-instantaneous. The problem is proving tri

Re: [Rd] documentation of .C (PR#9948)

2007-10-10 Thread Prof Brian Ripley
On Wed, 10 Oct 2007, [EMAIL PROTECTED] wrote: > Full_Name: Martin Schlather > Version: R version 2.7.0 Under development (unstable) (2007-10-01 r43043) > OS: Linux > Submission from: (NULL) (91.3.209.203) > > > Hi, > > There are 2 dangers with using 'DUP=FALSE' mentioned: > * formal arguments >

Re: [Rd] R-2.6.0> problem to load library(stats) (PR#9956)

2007-10-10 Thread Simon Urbanek
Dominique, please make sure you have the correct, current R binary from CRAN. It should have the MD5 hash of ff218b4e5687077c0078ca4948be1205 (for the full R). If it doesn't, please make sure you fetch it from another mirror. For a very brief period of time (less than 24h) there was a bina

Re: [Rd] documentation of .C (PR#9948)

2007-10-10 Thread Thomas Lumley
On Wed, 10 Oct 2007, [EMAIL PROTECTED] wrote: > Full_Name: Martin Schlather > Version: R version 2.7.0 Under development (unstable) (2007-10-01 r43043) > OS: Linux > Submission from: (NULL) (91.3.209.203) > > > Hi, > > There are 2 dangers with using 'DUP=FALSE' mentioned: > * formal arguments >

Re: [Rd] pt inaccurate when x is close to 0 (PR#9945)

2007-10-10 Thread Charles C. Berry
On Wed, 10 Oct 2007, Duncan Murdoch wrote: > On 10/10/2007 10:35 AM, [EMAIL PROTECTED] wrote: >> Full_Name: Skylab Gupta >> Version: R version 2.5.1 (2007-06-27) >> OS: Windows XP >> Submission from: (NULL) (216.82.144.137) >> >> >> Hello, >> >> I have been playing around with the statistical dist

Re: [Rd] pt inaccurate when x is close to 0 (PR#9945)

2007-10-10 Thread Duncan Murdoch
On 10/10/2007 10:35 AM, [EMAIL PROTECTED] wrote: > Full_Name: Skylab Gupta > Version: R version 2.5.1 (2007-06-27) > OS: Windows XP > Submission from: (NULL) (216.82.144.137) > > > Hello, > > I have been playing around with the statistical distributions in R. I think > the > computations for th

Re: [Rd] corMatrix crashes with corARMA structure (PR#9952)

2007-10-10 Thread Simone Giannerini
This is what I get on R 2.6.0, Win XP ciao Simone P.S. you have posted twice > n <- 100 > > # example from Box and Jenkins p. 83 > arcoefs <- c(0.8) > macoefs <- c(-0.6) > p <- length(arcoefs) > q <- length(macoefs) > > require(nlme) > tmp <- corARMA(value=c(arcoefs,macoefs), form=~1, p=p, q=q)

Re: [Rd] gregexpr (PR#9965)

2007-10-10 Thread Greg Snow
If you want all the matches (including overlaps) then you could try one of these: > gregexpr("(?=abab)","ababab",perl=TRUE) [[1]] [1] 1 3 attr(,"match.length") [1] 0 0 > gregexpr("ab(?=ab)","ababab",perl=TRUE) [[1]] [1] 1 3 attr(,"match.length") [1] 2 2 The book "Mastering Regular Expressions" b

[Rd] corMatrix crashes with corARMA structure (PR#9982)

2007-10-10 Thread btyner
Full_Name: Benjamin Tyner Version: 2.6.0 RC 2007-10-01 r43043 OS: WinXP Submission from: (NULL) (171.161.224.10) platform i386-pc-mingw32 arch i386 os mingw32 system i386, m

[Rd] R-2.6.0> problem to load library(stats) (PR#9956)

2007-10-10 Thread dominique . couturier
Hello, I just installed R-2.6.0 on my computer (OSX 10.4.10, ppc) and get the following message when I try to load the library stats: > library(stats) Error in dyn.load(file, ...) : kann shared library '/Library/Frameworks/R.framework/Resources/ library/stats/libs/ppc/stats.so' nicht laden

[Rd] package Geneland / Rgui under windows (PR#9964)

2007-10-10 Thread guillot
Full_Name: Gilles Guillot Version: 2.6.0 OS: windows XP professional Submission from: (NULL) (129.240.88.50) This sequence of command does not work in the R gui 2.6.0: library(Geneland) set.seed(1) data <- simdata(nindiv=200, coord.lim=c(0,1,0,1) , number.nuclei

[Rd] rendering dashed steps produces solid horizontal lines (PR#9953)

2007-10-10 Thread chris . bainbridge
Full_Name: Chris Bainbridge Version: 2.2.1 OS: Linux Submission from: (NULL) (86.157.4.96) The following python script will render two pdf files, one with lines and one with steps. The pdf with steps (s.pdf) renders the horizontal line as a solid when it should be dotted as in lpdf. It seems as t

[Rd] gregexpr (PR#9965)

2007-10-10 Thread dolanp
Full_Name: Peter Dolan Version: 2.5.1 OS: Windows Submission from: (NULL) (128.193.227.43) gregexpr does not find all matching substrings if the substrings overlap: > gregexpr("abab","ababab") [[1]] [1] 1 attr(,"match.length") [1] 4 It does work correctly in Version 2.3.1 under linux.

[Rd] documentation of .C (PR#9948)

2007-10-10 Thread schlather
Full_Name: Martin Schlather Version: R version 2.7.0 Under development (unstable) (2007-10-01 r43043) OS: Linux Submission from: (NULL) (91.3.209.203) Hi, There are 2 dangers with using 'DUP=FALSE' mentioned: * formal arguments * lists Would you also mention a third one, namely that values

[Rd] pt inaccurate when x is close to 0 (PR#9945)

2007-10-10 Thread skylab . gupta
Full_Name: Skylab Gupta Version: R version 2.5.1 (2007-06-27) OS: Windows XP Submission from: (NULL) (216.82.144.137) Hello, I have been playing around with the statistical distributions in R. I think the computations for the cumulative distribution function of the students t distribution in R a

[Rd] corMatrix crashes with corARMA structure (PR#9952)

2007-10-10 Thread btyner
Full_Name: Benjamin Tyner Version: 2.6.0 RC 2007-10-01 r43043 OS: WinXP Submission from: (NULL) (171.161.224.10) platform i386-pc-mingw32 arch i386 os mingw32 system i386, m

[Rd] Bug repository temporarily stalled

2007-10-10 Thread Peter Dalgaard
As part of a system upgrade just before Oct 1, the Dept. of Public Health no longer uses sendmail for incoming mail. This, unfortunately, also killed all user-level procmail filtering and hence also the r-bugs mail interface, so reports are being received but not processed. Now that they have real

Re: [Rd] Package compile under Windows on 2.6.0

2007-10-10 Thread Prof Brian Ripley
An on-list followup after some off-list rounds of correspondence. The problem 2) was that packages defining S4 classes/methods need to be installed to use lazy loading (or SaveImage, but that is deprecated, and removed in R-devel). This package had not specified lazy loading, and the automated