Re: [Rd] Two submitted packages

2006-09-04 Thread Richard M. Heiberger
## This example runs in R 2.3.1 and does not run in R 2.4.1. I am ## raising it here for two questions: one on how to debug functions ## inside a namespace, the other on how to control clipping. tmp <- data.frame(x=1:5, y=1:5, a=factor(c(1,1,1,1,1), levels=1:4)) xyplot(y ~ x, data=tmp, yli

[Rd] Bugs with partial name matching during partial replacement (PR#9202)

2006-09-04 Thread amaliy1
Hello, First the version info: platform powerpc-apple-darwin8.6.0 arch powerpc os darwin8.6.0 system powerpc, darwin8.6.0 status major 2 minor 3.1 year 2006 month 06 day01 svn rev38247 language R ver

Re: [Rd] make test-Specific?

2006-09-04 Thread François Pinard
[Gregor Gorjanc] >In Writing R Extensions manual, section "Testing R code"[1] says: >"be careful to check if make test-Specific or particularly, cd tests; >make no-segfault.Rout" >Actually, make test-Specific also needs "cd tests;" in front. >[1]http://cran.r-project.org/doc/manuals/R-exts.html#

Re: [Rd] (PR#9201) Unable to save a plot containing Chinese (two-byte)

2006-09-04 Thread ripley
This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --27464147-689190176-1157401193=:15799 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-1 Content-Transfer-Encoding: 8BIT Content-ID: <[EMAIL PROTECTED]>

Re: [Rd] (PR#9201) Unable to save a plot containing Chinese (two-byte) Characters

2006-09-04 Thread Prof Brian Ripley
Please can we have a full reproducible example, including the locales used, and exactly how you 'saved' the plot? (As we do ask.) If Chinese characters are 'two-byte', then this likely will not work (but at least European locales on MacOS X are UTF-8, so I expected Chinese ones to be also). T

Re: [Rd] setMethod("Summary")

2006-09-04 Thread Parlamis Franklin
i believe, if the function you are trying to work with has "..." as the first formal argument (as do most if not all of the "Summary" group functions), you will need to redefine the generic in order to provide a "real" S4 argument on which to dispatch. the following works for me (IIRC it was

Re: [Rd] Unexpected source() behavior in R-devel

2006-09-04 Thread Seth Falcon
"Henrik Bengtsson" <[EMAIL PROTECTED]> writes: > Yes, there's been some problems with the Bioconductor server the last > few days, e.g. http://bioconductor.org/biocLite.R is not working > either. It was down on Monday night too and then it was not possible > to install any packages from them. I t

[Rd] Start of release process for R 2.4.0

2006-09-04 Thread Peter Dalgaard
R 2.4.0 has been scheduled for October 3. The first alpha tarballs of R 2.4.0 will be made available through http://cran.r-project.org/src/base-prerelease/ starting tomorrow morning. The release schedule is available on http://developer.r-project.org As usual, bug reports are more use

[Rd] Unable to save a plot containing Chinese (two-byte) Characters (PR#9201)

2006-09-04 Thread stranak
Full_Name: Pavel Stranak Version: 2.3.1 OS: Mac OS X Submission from: (NULL) (195.113.20.81) Whenever I draw a plot containing Chinese character, it draws fine on screen, but never saves to a file. It does not matter, whether I first draw it on screen and than save or draw straight to pdf. It is

Re: [Rd] Unexpected source() behavior in R-devel

2006-09-04 Thread Peter Dalgaard
Sean Davis <[EMAIL PROTECTED]> writes: > > > > Did you see the segfault with a recent R or an older one? If more > > recent, then it might be worth trying to reproduce and tracking down > > the bug. > > > Seth, > > Peter was the person who reported the segmentation fault, not I. I > didn't expe

Re: [Rd] Unexpected source() behavior in R-devel

2006-09-04 Thread Sean Davis
Seth Falcon wrote: > Sean Davis <[EMAIL PROTECTED]> writes: > >> Seth Falcon wrote: >> >>> Peter Dalgaard <[EMAIL PROTECTED]> writes: >>> >>> >>> "Henrik Bengtsson" <[EMAIL PROTECTED]> writes: > This has been reported before on r-devel, e.g. M

Re: [Rd] Unexpected source() behavior in R-devel

2006-09-04 Thread Seth Falcon
Sean Davis <[EMAIL PROTECTED]> writes: > Seth Falcon wrote: >> Peter Dalgaard <[EMAIL PROTECTED]> writes: >> >> >>> "Henrik Bengtsson" <[EMAIL PROTECTED]> writes: >>> >>> This has been reported before on r-devel, e.g. May 9, 2006 "[Rd] Seg fault when installing package from bad re

[Rd] setMethod("Summary")

2006-09-04 Thread Robin Hankin
Hi everyone and thanks for being patient. I've used "!.foo"() et seq pro tem. Next problem: how to define "Summary" methods for brobs. ?max says 'max' and 'min' are generic functions: methods can be defined for them individually or via the 'Summary' group generic. For this to

Re: [Rd] setMethod("Logic", ...)

2006-09-04 Thread Martin Maechler
> "Robin" == Robin Hankin <[EMAIL PROTECTED]> > on Mon, 4 Sep 2006 09:41:46 +0100 writes: Robin> Professor Ripley Robin> thank you for this (and indeed thank you for solving my earlier Robin> problem on octonions). Robin> I still don't know how to force logic operatio

Re: [Rd] setMethod("Logic", ...)

2006-09-04 Thread Prof Brian Ripley
On Mon, 4 Sep 2006, Robin Hankin wrote: > Professor Ripley > > thank you for this (and indeed thank you for solving my earlier > problem on octonions). > > I still don't know how to force logic operations on brob objects to give an > error. I found this in the methods sources ## R does no

Re: [Rd] R-Project logo in SVG format

2006-09-04 Thread Friedrich Leisch
> On Fri, 1 Sep 2006 08:56:03 -0700, > Don MacQueen (DM) wrote: > I have a file named Rlogo-5.svg, created by > downloading Rlogo-5.png, opening it with Adobe > Illustrator, Saving as SVG. > I didn't tinker with any of Illustrator's options > with regard to how, exactly, to sa

Re: [Rd] R-Project logo in SVG format

2006-09-04 Thread Friedrich Leisch
> On Thu, 31 Aug 2006 16:55:38 +0100, > Barry Rowlingson (BR) wrote: > [EMAIL PROTECTED] wrote: >> After you created one and submitted it to us probably at the same place as >> the bitmaps. In the meantime it will have to suffice that you use all we >> have, and that are the bitmap

Re: [Rd] setMethod("Logic", ...)

2006-09-04 Thread Robin Hankin
Professor Ripley thank you for this (and indeed thank you for solving my earlier problem on octonions). I still don't know how to force logic operations on brob objects to give an error. 06, at 16:45, Prof Brian Ripley wrote: > Accordng to the S4groupGeneric page, there is no such group. >