Re: [Rd] upgrading an R installation to next versoin

2005-07-14 Thread Gabor Grothendieck
I have been thinking a bit more about the Windows R installation upgrade discussion below and there are really two cases: 1. one wants to upgrade R and is no longer interested in preserving the old versions of R In this case one could configure R to have a ..\R\library folder that contains the l

Re: [Rd] (PR#7951) DispatchOrEval missing in do_isfinite and do_isinfinite

2005-07-14 Thread lars
Hi, I ran into another internal function that is missing S4 dispatch. It is the binary operator ":". Looking at the code, I see that it is actually a common problem. Other candidates are operators like "~", "&&", "||" and functions like: "length<-", "row", "col", "unlist", "cbind", etc. It wou

Re: [Rd] Computer algebra in R - would that be an idea??

2005-07-14 Thread Søren Højsgaard
Perhaps, this is the wrong mailing list, but I've been thinking about calling e.g. maxima from R through some kind of wrapper. On windows, maxima can be invoked through a file called maxima.bat which opens a simple 'dos terminal' in which maxima is running. A simple way of interfacing R and maxi

[Rd] Other mailing lists about R

2005-07-14 Thread Fernando Henrique Ferraz P. da Rosa
I'd like to suggest an addition to the 'Mailing Lists' page on the R-project site: [1]. There could be a section 'Non-official mailing lists', with links to other mailing lists about R, not maitained by the R-core group, potentially including mailing lists in other languages. As a

Re: [Rd] Computer algebra in R - would that be an idea??

2005-07-14 Thread Rob J Goedman
A really simple way to play with R & yacas is by using the examples in the subdir 'embed' of yacas-1.0.57. After building yacas (on Mac OS in my case): > res<-system("~/Projects/yacas-1.0.57/embed/example2", intern=T) > res [1] "Cos(x);" or > res<-system("~/Projects/yacas-1.0.57/embed/exam

[Rd] Adjusted p-values with TukeyHSD (patch)

2005-07-14 Thread Fernando Henrique Ferraz P. da Rosa
Dear R-developeRs, Attached follows a patch against svn 34959 that adds the printing of p-values to the TukeyHSD.aov function in stats package. I also updated the corresponding documentation file and added a 'see also' reference to the simint function of the multcomp package.