Re: [Rd] Incorrect display of b[hat((a))] expression in plots

2004-07-28 Thread Uwe Ligges
Confirmed. I might look at it during August, since the underlying code is not that new to me. If Paul (or anybody else from R Core) has not answered yet and there is not already a related bug report in the database, I'd suggest to submit a bug report. Uwe Henrik Bengtsson wrote: Hi, I am not

[Rd] startup bug (PR#7138)

2004-07-28 Thread rls54
Full_Name: Rob Strawderman Version: 1.9.1 OS: red hat linux 8 Submission from: (NULL) (128.253.217.211) The following demonstrates the basic problem: [martingale 99]% rm .RData rm: remove regular file `.RData'? y [martingale 100]% R R : Copyright 2004, The R Foundation for Statistical

Re: [Rd] startup bug (PR#7138)

2004-07-28 Thread Prof Brian Ripley
This is almost surely not bug in R: it is working as intended. You can search the R-help archives for similar problems and several solutions. However, your main problem is that your MASS is not up to date, and you need to run update.packages(). (The current MASS has a workaround for this.)

[Rd] R 1.9.1 Crash in Win2000 (PR#7139)

2004-07-28 Thread gunter . berton
This probably should go to Duncan Murdoch ... The following reliably crashes R Version 1.9.1 on Win2000: winDialogString(paste(sample(letters,500,rep=TRUE), collapse=),default=) (presumably because of the too lengthy message string; but what is the length limit?). -- Bert Gunter Non-Clinical

[Rd] [Re: R 1.9.1 Crash in Win2000] (PR#7140)

2004-07-28 Thread gunter . berton
I should have added that this is under RGui.exe of course. -- Bert Original Message Subject: R 1.9.1 Crash in Win2000 Date: Wed, 28 Jul 2004 11:22:30 -0700 From: Berton Gunter [EMAIL PROTECTED] Organization: Genentech, Inc. To: [EMAIL PROTECTED] This probably should go to

Re: [Rd] startup bug (PR#7138)

2004-07-28 Thread Rob Strawderman
The suggestion to use update.packages() appears to have solved the problem, thanks. -- *** Robert Strawderman Graduate Director, Field of Statistics BSCB Department Email: [EMAIL PROTECTED]

RE: [Rd] Packages of snippets?

2004-07-28 Thread Warnes, Gregory R
FWIW, I already include function 'snippets' in the gregmisc package (soon to be a package bundle). I would be happy to do this in a more public fashion. I generally require that the sumitter provide both the R code and a corresponding .Rd file. -Greg -Original Message- From:

Re: [Rd] read.table() and NULL for colClasses

2004-07-28 Thread Prof Brian Ripley
NULL is not a valid value for colClasses and I don't see why you thought it was. colClasses has to be character according to the documentation, so NULL is allowed but not NULL. Your diff appears to be backwards for a patch. A patch against the current R-devel sources is what is needed,

[Rd] Parsing multi-line strings. Bug? Feature?

2004-07-28 Thread Kevin Wright
I have an S-Plus library that I would like to port to R. The library sends a mix of static and dynamic output to an html file. For example cat( ... Big block of HTML formatting code ... ) cat(dat()) cat( More static text ) With S-Plus I can just cut and paste HTML code from other files into

RE: [Rd] Parsing multi-line strings. Bug? Feature?

2004-07-28 Thread Gabor Grothendieck
One workaround is the idea in http://maths.newcastle.edu.au/~rking/R/help/03a/6855.html which, applied to this problem would be used by entering the snippets as inline data files and reading them into R variables which can then be cat'ed. You do have to preface each line of the inline data