similar to: R-alpha: Re: Mailing list archives -- ok -- thank you

Displaying 20 results from an estimated 100000 matches similar to: "R-alpha: Re: Mailing list archives -- ok -- thank you"

1997 Sep 18
2
R-alpha: Re: R-Mailing lists ok again. ..sorry..
Martin Maechler <maechler@stat.math.ethz.ch> writes: > This caused 3 postings (1 to R-help, 2 to R-devel) to be aborted. > For some reason, it also seems majordomo did not save the postings in > a 'dead.letter' or something. > So could you please re-submit them? > These are the sendmail entries: > Sep 17 21:14:21 .. sendmail[9364]: VAA09363:
1997 Sep 15
2
R-alpha: predict.lm -- who ..?
Just a short reminder / question -- We've had one posting >> Date: Sun, 17 Aug 1997 19:51:20 -0700 >> From: Kung-Sik Chan <kchan@stat.uiowa.edu> >> To: r-help@stat.math.ethz.ch >> Subject: R-beta: bug report with a predict.default that would "work" with (some) lm objects, and I think it was said that predict.lm "is being" written (Peter
1997 Apr 01
1
R-alpha: Re: R-Prerelease ---- Mailing list "R-devel"
well yes, I've only sent mail to R-devel,... When I started, I thought I would first let you give feedback on it,.. I can still change some of the names if any of you thinks it's necessary (and yes, no "April's fool" included...) Martin =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- r-devel mailing list -- Read
2000 Jan 21
0
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1997 Sep 05
0
R-alpha: GLM (from R-core)
As some of you may know, there has been formed a "core team" of developers, who can dig directly into the R source at Auckland and fix bugs etc., in order to speed up development. There is a mailing list for that group. This is necessary, because some of the bugs discussed are not publicly available (and hopefully will never be!), but one potential risk of the structure is that we forget
1997 Nov 28
0
R-alpha: Latin-1 characters / Locale etc.
[to R-devel, for everyone's information; thanks a lot, Peter!] >>>>> "PD" =3D=3D Peter Dalgaard BSA <p.dalgaard@biostat.ku.dk> writes: PD> Hmmm. You may need a call to PD> #include <locale.h> PD> setlocale(LC_ALL,"") PD> (or LC_CTYPE?) before your environment variables take effect. Yes, this was `it'.
1997 Oct 29
2
R-alpha: Using autoload and smaller 'base' package [was "Re: New Version"].
[This is a "spill-over" from the "R-core" mailing list, since several of you may be interested and have comments ... -MM] >>>>> "Thomas" == Thomas Lumley <thomas@biostat.washington.edu> writes: Thomas> On 29 Oct 1997, Peter Dalgaard BSA wrote: >> Perhaps we should revise the current contents of the base library >>
1997 Apr 24
1
R-alpha: list assignment
This works in Splus: > x<-list() > x[["f"]]<-1 > zz<-"g" > x[[zz]]<-2 > x $f: [1] 1 $g: [1] 2 In R both variants fail unless the name is already on the list. The first one can be replaced by x$f, but there's seems to be no substitute for the other one (oh yes I found one, but it's not fit to print!). This comes up if you e.g. want to
1999 Jul 07
0
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1998 Apr 01
0
R-tk mailing list
This is to announce that Martin Maechler has set up a new mailing list with the purpose of investigating the possibility to use Tcl/Tk with R. As you may know, Tcl is a scripting language and Tk is its GUI toolkit. In the context of R, the main attractions are - portability X/Win3.1/Win32/Mac - ease of implementation (people say...) - nice GUI model of Tk - possibility of making language
1999 May 21
0
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1997 Aug 22
0
R-alpha: Re: Extensions .R and .Rd (in base/funs/ and base/man/ )
This is propagated to R-devel in case anyone else has a comment on this : >>>>> "MM" == Martin Maechler <maechler@stat.math.ethz.ch> writes: MM> On Aug. 14, MM> "Ross" == Ross Ihaka <ihaka@stat.auckland.ac.nz> writes: Ross> Re the emacs stuff: MM> ... Ross> 2. Peter Dalgaard made the suggestion that we made R source
1999 Apr 07
2
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1997 Aug 15
1
R-alpha: (minor?) S-R inconsistency: NULL =~= list() -- useful is.ALL function
In S, NULL and list() are not the same. In R they are (I think). --------------------------------------------------- At least, is.list(NULL) #-> 'F' in S; 'TRUE' in R Yes: I had an instance where this broke correct S code: match(c("xlab","ylab"), names(list(...))) when '...' is empty, gives an error in R, but gives c(NA,NA) in S.
1999 Oct 07
1
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1997 Nov 10
1
R-alpha: Re: R/R-minus incompatibility [ an old one ]
>>>>> "FrL" == Friedrich Leisch <Friedrich.Leisch@ci.tuwien.ac.at> writes: FrL> Hmm, I'm quite perplexed by something very trivial/stupid/whatever FrL> ... don't know, if this one has been reported before: R> x<-1 x[1:2] FrL> Error: subscript out of bounds Splus> x<-1 x[1:2] FrL> [1] 1 NA FrL> Or is
1997 Oct 20
2
R-alpha: system() ok -- is.R() function
Martin Your revisions to my S--R compatability code suggest that tempfile() is in R after 0.49. I don't find that to be the case. It requires code from Friedrich Leisch which still has to be added as of 0.50 alpha3. Paul _______ R : Copyright 1997, Robert Gentleman and Ross Ihaka Version 0.50 Alpha-3 (August 8, 1997) > exists("tempfile", mode = 'function') [1] FALSE >
1999 Aug 21
2
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1997 Aug 02
0
R-alpha: .RData zapped by system shutdown
Watch: R : Copyright 1997, Robert Gentleman and Ross Ihaka Version 0.50 Alpha-1 (July 22, 1997) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type "license()" for details. [Previously saved workspace restored] Error: restore file corrupted -- no data loaded --- -rw-r--r-- 1 pd users 0 Aug 1 12:46
1999 Nov 07
1
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or