[Rd] Experimental package for asan-usan checks

2018-04-16 Thread Tim Keitt
I've been trying to replicate Brian's excellent work on sanity checks so we can get that information before submitting. I've put together an experimental package here: https://github.com/thk686/sanitycheckr It uses a modified rocker r-devel-san image and attempts to install all dependencies before

Re: [Rd] strange warning: data() error?

2018-04-16 Thread David Winsemius
> On Apr 16, 2018, at 3:20 PM, David Winsemius wrote: > >> >> On Apr 16, 2018, at 2:58 PM, Therneau, Terry M., Ph.D. via R-devel >> wrote: >> >> A user asked me about this and I can't figure it out. >> >> tmt% R >> R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered >> Conseq

Re: [Rd] strange warning: data() error?

2018-04-16 Thread William Dunlap via R-devel
data(package="survival") gives, in part, cgd Chronic Granulotomous Disease data cgd0 (cgd) Chronic Granulotomous Disease data colon Chemotherapy for Stage B/C colon cancer flchain Assay of serum free light chain for 7874

Re: [Rd] strange warning: data() error?

2018-04-16 Thread David Winsemius
> On Apr 16, 2018, at 2:58 PM, Therneau, Terry M., Ph.D. via R-devel > wrote: > > A user asked me about this and I can't figure it out. > > tmt% R > R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered > Consequences" > Copyright (C) 2018 The R Foundation for Statistical Computin

[Rd] strange warning: data() error?

2018-04-16 Thread Therneau, Terry M., Ph.D. via R-devel
A user asked me about this and I can't figure it out. tmt% R R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered Consequences" Copyright (C) 2018 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) > library(survival) > data(cgd0) Warning message: In d

Re: [Rd] alpha transparency doesn't work for lines when xpd=TRUE

2018-04-16 Thread William Dunlap via R-devel
The problem occurs in the Windows GUI with the 'windows()' graphics device. In the following example the red diagonal line appears in 3 plots but not in the one with xpd=TRUE and alpha.f=0.9. > par(mfrow=c(2,2)) > for(xpd in c(FALSE, TRUE)) for(alpha.f in c(.9, 1)) plot(0:1,xpd=xpd,type="l",col=ad

Re: [Rd] alpha transparency doesn't work for lines when xpd=TRUE

2018-04-16 Thread David Winsemius
> On Apr 16, 2018, at 10:41 AM, Jiaxuan Chen > wrote: > > Dear R-devel, > > I think I've found a bug - the alpha transparency doesn't work when plotting > lines with xpd = TRUE. > > #works > plot(1:20, col="#1874CD", xpd=T, type="l") > > #works > plot(1:20, col="#1874CD50", xpd=F, type="l")

[Rd] alpha transparency doesn't work for lines when xpd=TRUE

2018-04-16 Thread Jiaxuan Chen
Dear R-devel, I think I've found a bug - the alpha transparency doesn't work when plotting lines with xpd = TRUE. #works plot(1:20, col="#1874CD", xpd=T, type="l") #works plot(1:20, col="#1874CD50", xpd=F, type="l") #doesn't work plot(1:20, col="#1874CD50", xpd=T, type="l") Thank you. Jim

Re: [Rd] packageDate() segfaults, if used without argument

2018-04-16 Thread Rainer Hurling
Hi Martin, Am 16.04.2018 um 09:03 schrieb Martin Maechler: Rainer Hurling on Sun, 15 Apr 2018 11:01:59 +0200 writes: > Out of curiosity, I played a bit with the new function > packageDate() from April, 4th. All works fine, except > using it without any argument. In this c

Re: [Rd] packageDate() segfaults, if used without argument

2018-04-16 Thread Martin Maechler
> Rainer Hurling > on Sun, 15 Apr 2018 11:01:59 +0200 writes: > Out of curiosity, I played a bit with the new function > packageDate() from April, 4th. All works fine, except > using it without any argument. In this case, it > segfaults: Thank you, Rainer, for the re