[Rd] prompt function confusion (PR#4978)

2003-11-07 Thread kwright
Full_Name: Kevin Wright Version: 1.8.0 OS: Windows 2000 Submission from: (NULL) (170.54.59.160) (Apologies if this appears multiple times. Web interface appeared to fail.) Minor cosmetic issue The 'prompt' command contains this: cat(strwrap(c(paste("Created file named", sQuote(filename), "in

[Rd] Weirdness with choose.files on Microsoft Windows (PR#6818)

2004-04-23 Thread kwright
Full_Name: Kevin Wright Version: 1.8.0 OS: Windows 95 Submission from: (NULL) (170.54.59.160) This bug also happens to me using R 1.9.0 on Windows 2000. Took me a long time to create a reproducible bug, but I think I have succeeded. I suspect my test function has a bug, but I don't see anythin

[Rd] installed.packages hyperlink wrong in two spots (PR#6850)

2004-05-03 Thread kwright
Full_Name: Kevin Wright Version: 1.9.0 OS: Windows 2000 Submission from: (NULL) (170.54.59.160) The html help file for the 'library' function contains this sentence: Note that installed.packages() returns... The 'installed.packages' hyperlink points to 'installed.packages.html'. The latter f

[Rd] promptData still creates 'data(...)' in R 2.0.0

2004-10-12 Thread kwright
Not necessarily a bug report, but might be nice to change. I'm using R 2.0.0 on Windows 2000. The promptData function creates a .Rd file in which the 'usage' section is: \usage{data()} I've looked at several of the help files for various data sets. It looks like the use of 'data' is being red

[Rd] Requested consideration: true, true, true in SearchObject.html

2004-11-12 Thread kwright
I've just posted an email to R-help with instructions on creating a Firefox keyword search of the R documentation: https://www.stat.math.ethz.ch/pipermail/r-help/2004-November/059272.html The method involves bookmarking the RHOME/doc/html/search/SearchObject.html file. Currently this page is set

[Rd] Re: Requested consideration: true, true, true in SearchObject.html

2004-11-12 Thread kwright
Hold off on this request. I don't have the details quite right. The keyword search works, but what exactly it returns is not clear to me. It's not the same as searching from the SearchEngine.html page. If anybody figures this out before me, great. Otherwise I continue to flounder around by tr

[Rd] Small suggestion for stripchart help

2005-03-14 Thread kwright
I needed to look up information about the 'jitter' argument of stripchart. When I opened the help page for jitter I found: jitter when jittering is used, jitter gives the amount of jittering applied. which is slightly confusing/self-referential if you are lazy and don't read the entire page.

[Rd] Why no BIC.default function?

2005-04-18 Thread kwright
I'm using R 2.0.1. I looked in the email archives but didn't see anything on this topic. I've noticed a surprising (to me) difference between AIC and BIC: > methods("AIC") [1] AIC.default* AIC.logLik* > methods("BIC") [1] BIC.gls*BIC.lm* BIC.lme*BIC.lmList* BIC.logLik* BIC.nls* Th

Re: [Rd] Why no BIC.default function?

2005-04-18 Thread kwright
> R does not have a BIC S3 generic function: it is in package nlme! > (There is one for S4 classes in package stats4.) Sorry, I should have noticed that. Maybe my question should have been: Since the stats package has generics for logLik and AIC, could it include a generic for BIC? Kevin Wright

[Rd] Revised scatter.smooth using xy.coords

2005-05-02 Thread kwright
This started when I discovered that scatter.smooth (R 2.1.0) has an undocumented ability to use a formula as the first argument. Then I discovered the xy.coords function, which seems like a natural fit and a way to unify scatter.smooth with other plotting functions, so I offer here a revised vers

[Rd] Bug #7829 reproducible example (rejected by bug tracker)

2005-05-03 Thread kwright
I submitted a bug report (#7829) that is in the bug tracking system, but bounced off the email list for some reason. Since then, I've come up with a reproducible example: Oats <- Oats[-1,] Oats$nitro <- as.factor(Oats$nitro) Oats.aov <- aov(yield~Block+Variety+nitro+Variety:nitro,data=Oats) mode

[Rd] A patch for scatter.smooth

2005-05-20 Thread kwright
This is a follow-up to my earlier posting this month. For your consideration, here are patches for loess.R and scatter.smooth.Rd that will allow either of the following to work: scatter.smooth(x,y,...) scatter.smooth(y~x,...) Here are some test cases: attach(cars) scatter.smooth(speed,dist,