Re: [Rd] symbol.For problem? (PR#7974)

2005-06-27 Thread ripley
You are not using symbol.For correctly. Both .Fortran and symbol.For append an underscore if one is needed: > symbol.For("add") [1] "add_" so you are looking for "add__" which will not be in the function table. The help file says Functions 'symbol.C' and 'symbol.For' map function or subr

[Rd] Does not run under Mac OS X 10.3.9 (PR#7975)

2005-06-27 Thread matthias . wahl
Full_Name: Matthias Wahl Version: 2.0.1 and 2.1.0a OS: Mac OS X 10.3.9 Submission from: (NULL) (84.159.39.159) Version 2.1.0a does get installed, R is available under applications, however when trying to start R I get an error message that R is terminated due to an error and that's it. Re-install

Re: [Rd] symbol.For problem? (PR#7974)

2005-06-27 Thread murdoch
[EMAIL PROTECTED] wrote: > > It seems as though 'symbol.For' does not work correctly. >>library("foo") >>add(3,4) > > [1] 7 > >>sym.add(3,5) > > > Error in .Fortran(symbol.For("add"), as.numeric(a), as.numeric(b), c = > as.numeric(0)) : > "Fortran" function name not in load table I

[Rd] symbol.For problem? (PR#7974)

2005-06-27 Thread jbremson
It seems as though 'symbol.For' does not work correctly. > library("foo") > add(3,4) [1] 7 > sym.add(3,5) Error in .Fortran(symbol.For("add"), as.numeric(a), as.numeric(b), c = as.numeric(0)) : "Fortran" function name not in load table The function 'add' is a R wrapper to a simple for

[Rd] axTicks on a reverse ylog plot (PR#7973)

2005-06-27 Thread mwtoews
There is still issues with the reversed y-log scale plot: # Test case A: works as expected plot(10:100,log="y",ylim=c(100,11)) grid() par("yaxp") # Test case B: grid does not have horizontal lines; par("yaxp") is different plot(1:100,log="y",ylim=c(100,10)) grid() par("yaxp") In the second tes

Re: [Rd] R mailing list archive: alternative interface

2005-06-27 Thread Dirk Eddelbuettel
On 27 June 2005 at 17:33, Earl F. Glynn wrote: | "Seth Falcon" <[EMAIL PROTECTED]> wrote in message | news:[EMAIL PROTECTED] | > On 27 Jun 2005, [EMAIL PROTECTED] wrote: | > > I only wish the Bioconductor E-mail somehow got on the gmane | > > "newgroups" too. | | After my post I discovered the Bi

Re: [Rd] R mailing list archive: alternative interface

2005-06-27 Thread Earl F. Glynn
"Seth Falcon" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On 27 Jun 2005, [EMAIL PROTECTED] wrote: > > I only wish the Bioconductor E-mail somehow got on the gmane > > "newgroups" too. After my post I discovered the Bioconductor mailing list can be read as gmane newsgroups, too.

Re: [Rd] R mailing list archive: alternative interface

2005-06-27 Thread Seth Falcon
On 27 Jun 2005, [EMAIL PROTECTED] wrote: > I only wish the Bioconductor E-mail somehow got on the gmane > "newgroups" too. I think we can do something about that :-) + seth __ R-devel@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-d

[Rd] row-side color bars do not reverse properly in heatmap (PR#7972)

2005-06-27 Thread krc
Full_Name: Kevin R. Coombes Version: 2.1.0 OS: Windows XP Submission from: (NULL) (143.111.224.169) When revC = TRUE and RowSideColors is set to a list of colors in heatmap, then the image and dendrogram are inverted, but the row-side color map does not change. The following script illustrates th

Re: [Rd] R v2.1.1 for Windows and "non-reproducible" crashes

2005-06-27 Thread Duncan Murdoch
On 6/27/2005 10:44 AM, Henrik Bengtsson wrote: > Henrik Bengtsson wrote: >> Hi, >> >> R v2.1.1 patched (2005-05-26) for Windows crashes. The sympotoms are >> like "memory leakage". The patched version from two days ago crashes at >> a different position in R CMD check compared to todays versio

Re: [Rd] R mailing list archive: alternative interface

2005-06-27 Thread Earl F. Glynn
"hadley wickham" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > For a programming competition (http://railsday.com) I recently > entered, I created a web-application to nicely display mail archives. > I've loaded up a couple of months worth of r-devel mail and made it > available her

Re: [Rd] R v2.1.1 for Windows and "non-reproducible" crashes

2005-06-27 Thread Henrik Bengtsson
Henrik Bengtsson wrote: > Hi, > > R v2.1.1 patched (2005-05-26) for Windows crashes. The sympotoms are > like "memory leakage". The patched version from two days ago crashes at > a different position in R CMD check compared to todays version. Sorry for being unclear; the "R CMD check" refers

[Rd] R v2.1.1 for Windows and "non-reproducible" crashes

2005-06-27 Thread Henrik Bengtsson
Hi, R v2.1.1 patched (2005-05-26) for Windows crashes. The sympotoms are like "memory leakage". The patched version from two days ago crashes at a different position in R CMD check compared to todays version. A "REPRODUCIBLE" EXAMPLE: Unfortunately, I cannot create a minimal code example repr

[Rd] Wish/suggestion: Install packages on fly via library()

2005-06-27 Thread Gorjanc Gregor
Hello! I thought that installation of missing packages on fly via library() would be a nice thing to have. Something like this: if (missing(pkg) && getOption("installOnFly")) { install.packages(pkg, ...) } I did look into library() function to find appropriate place for code similar to on abov

Re: [Rd] Unused argument "na.action" to pairs.formula

2005-06-27 Thread Prof Brian Ripley
You are correct: now fixed in R-patched and R-devel. I have fixed this once before, so that fix must have got lost. BTW, the sources have an explanatory comment you don't see by listing the function in R: it is necessary to set m$na.action explicitly because match.call only includes supplied ar

Re: [Rd] Cannot choose language for installing (PR#7971)

2005-06-27 Thread ripley
The language of the installer is completely unrelated to the language used to run R. This is not a bug: to use R in Chinese, you need to select Chinese as the language to use: see the `R Installation and Administration manual'. This should happen automatically if Windows is set to Simplified Chi