[Rd] Re: [R] Changing graphics defaults [was: changing (core) function argument defaults?]

2004-11-17 Thread Spencer Graves
ifically -- e.g., by changing the subject line to this email. hope this helps. spencer graves RenE J.V. Bertin wrote: >From: Patrick Connolly <[EMAIL PROTECTED]> >To: "RenE J.V. Bertin" <[EMAIL PROTECTED]> >Subject: Re: [R] changing (core) function argument de

[Rd] Re: all.equal(, ) not considering names [was "vector documentation error?"]

2004-07-21 Thread Spencer Graves
ce to all research that includes the development of new statistical algorithms by making it so much easier for others to modify and extend something that previous researchers have developed. Best Wishes, spencer graves Martin Maechler wrote: "Spencer" == Spencer Graves

[Rd] vector documentation error?

2004-07-21 Thread Spencer Graves
Thanks for all your hard work to make R a reality. It makes it so much easier to develop new statistical methods for almost any purpose and through that to contribute to building a better world for all. Sincerely, Spencer Graves p.s. Please excuse if I'm sending this to the

[Rd] Re: [R] Printing Lattice Graphs from Windows (PR#6951)

2004-06-06 Thread spencer . graves
Entschuldigung! My English spellchecker failed me again. spencer graves Peter Dalgaard wrote: >Dirk Eddelbuettel <[EMAIL PROTECTED]> writes: > > > >>On Sun, Jun 06, 2004 at 01:32:00PM -0700, Spencer Graves wrote: >> >> >>> I agree: It

[Rd] Re: [R] Printing Lattice Graphs from Windows (PR#6948)

2004-06-06 Thread spencer . graves
difying the Lattice defaults the same way under Rgui.exe. I again got a blank image copied into Word. hope this helps. spencer graves ### Duncan Murdoch wrote: On Sun, 6 Jun 2004 15:00:52 -0500, Dirk Eddelbuettel <[EMAIL PROTECTED]> wrote: >But isn'

[Rd] Re: [R] Printing Lattice Graphs from Windows (PR#6947)

2004-06-06 Thread spencer . graves
to this email. Spencer Graves Irk Eddelbuettel wrote: >On Sun, Jun 06, 2004 at 12:26:45PM -0700, Spencer Graves wrote: > > >> Using R 1.9.1 alpha via XEmacs with ESS under Windows 2000, I did >>the following: >> >> library(lattice) >> xyp

[Rd] bug(?) in chisq.test

2004-03-09 Thread Spencer Graves
"if(PVAL==0)PVAL <- 1/(B+1)" right after the following line in the code for chisq.test (in R 1.8.1 for Windows): PVAL <- sum(tmp$results >= STATISTIC)/B Thanks for all your hard work for the R Project. Best Wishes, spencer graves Origin

[Rd] fac.design & mean.default(..., weights)

2003-06-01 Thread Spencer Graves
n to include in a future release. Is this something you like to hear about, or is this email a waste of your time and mine? Thanks for your valuable work on the R project. Best Wishes, Spencer Graves mean.default <- function (x, tr

Re: [Rd] match.arg

2003-02-24 Thread Spencer Graves
if((length(arg)==length(choices)) && all(arg==choices)) return(choices[1]) Since I had heard no reply, I decided not to issue a "correction" to an email that might go nowhere or might only irritate the recipients. Thanks again for your comments and all your ef

[Rd] match.arg

2003-02-17 Thread Spencer Graves
Hello: I found a way to break the "match.arg" function I sent a few hours ago. The following works better, I believe. Thanks again for your great work on the R project. Spencer Graves ## match.arg <- function (arg = NULL, choices= NULL) { if (is

[Rd] match.arg

2003-02-17 Thread Spencer Graves
;default" = c("aa", "bb") returned only "a"; the following returns c("aa", "bb"). Thanks for all your hard work in developing this marvelous product. Sincerely, Spencer Graves match.arg <- function (arg, choices) { if (missing(choic