Full_Name: Carsten Dormann Version: 1.4.0 OS: Windows 2000 Submission from: (NULL) (192.171.129.9) Hello, using the function xyplot I repeatedly had R crashing. One example is from the book of Mick Crawley (Stat. Computing in Splus), where the commandline reads: xyplot(Weight~Age|Genotype, pch=16) I also had the same phenomenon with my own data and commands even simpler. I reinstalled lattice, because on loading the package I got an error message that the lattice.dll couldn't be found. However that wasn't the cause of the problem. I downloaded the package again from a different mirror site, all in vain. This is the simplest code I could create to crash R with xyplot:> x_runif(100) > y_rnorm(100) > plot(x,y) > xyplot(y~x)CRASH! Best wishes, Carsten -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
Try the current version of R: yours is long obselete and I suspect has a mismatched version of grid. The current version comes with grid/lattice. On Wed, 17 Jul 2002 carsten.dormann@web.de wrote:> Full_Name: Carsten Dormann > Version: 1.4.0 > OS: Windows 2000 > Submission from: (NULL) (192.171.129.9) > > > Hello, > > using the function xyplot I repeatedly had R crashing. > > One example is from the book of Mick Crawley (Stat. Computing in Splus), where > the commandline reads: xyplot(Weight~Age|Genotype, pch=16) > I also had the same phenomenon with my own data and commands even simpler. > > I reinstalled lattice, because on loading the package I got an error message > that the lattice.dll couldn't be found. However that wasn't the cause of the > problem. I downloaded the package again from a different mirror site, all in > vain. > This is the simplest code I could create to crash R with xyplot: > > x_runif(100) > > y_rnorm(100) > > plot(x,y) > > xyplot(y~x) > CRASH! > > Best wishes, > > Carsten > > > > -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- > r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html > Send "info", "help", or "[un]subscribe" > (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch > _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._ >-- Brian D. Ripley, ripley@stats.ox.ac.uk Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/ University of Oxford, Tel: +44 1865 272861 (self) 1 South Parks Road, +44 1865 272860 (secr) Oxford OX1 3TG, UK Fax: +44 1865 272595 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
carsten.dormann@web.de writes:> Full_Name: Carsten Dormann > Version: 1.4.0******> OS: Windows 2000 > Submission from: (NULL) (192.171.129.9) > > > Hello, > > using the function xyplot I repeatedly had R crashing. > > One example is from the book of Mick Crawley (Stat. Computing in Splus), where > the commandline reads: xyplot(Weight~Age|Genotype, pch=16) > I also had the same phenomenon with my own data and commands even simpler. > > I reinstalled lattice, because on loading the package I got an error message > that the lattice.dll couldn't be found. However that wasn't the cause of the > problem. I downloaded the package again from a different mirror site, all in > vain. > This is the simplest code I could create to crash R with xyplot: > > x_runif(100) > > y_rnorm(100) > > plot(x,y) > > xyplot(y~x) > CRASH!Please retry with the current version of R. -- O__ ---- Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of Biostatistics 2200 Cph. N (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - (p.dalgaard@biostat.ku.dk) FAX: (+45) 35327907 -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
ligges@statistik.uni-dortmund.de
2002-Jul-17 14:11 UTC
R crashes when using "xyplot" (PR#1801)
carsten.dormann@web.de wrote:> > Full_Name: Carsten Dormann > Version: 1.4.0 > OS: Windows 2000 > Submission from: (NULL) (192.171.129.9) > > Hello, > > using the function xyplot I repeatedly had R crashing. > > One example is from the book of Mick Crawley (Stat. Computing in Splus), where > the commandline reads: xyplot(Weight~Age|Genotype, pch=16) > I also had the same phenomenon with my own data and commands even simpler. > > I reinstalled lattice, because on loading the package I got an error message > that the lattice.dll couldn't be found. However that wasn't the cause of the > problem. I downloaded the package again from a different mirror site, all in > vain. > This is the simplest code I could create to crash R with xyplot: > > x_runif(100) > > y_rnorm(100) > > plot(x,y) > > xyplot(y~x) > CRASH!Please read what a bug is and how to report a bug. With recent versions of R (R-1.4.0 is not recent!), lattice and grid I cannot reproduce the crash. Uwe Ligges BTW: - For good reasons, "_" will be depreciated shortly, AFAIK. - I'd suggest to avoid random numbers for code in bug reports. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
> From: ligges@statistik.uni-dortmund.de[...]> - I'd suggest to avoid random numbers for code in bug reports.Not unless set.seed() is called, I suppose? Andy ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, proprietary copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please immediately return this by e-mail and then delete it. ============================================================================= -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
> From: ligges@statistik.uni-dortmund.de[...]> - I'd suggest to avoid random numbers for code in bug reports.Not unless set.seed() is called, I suppose? Andy ------------------------------------------------------------------------------ Notice: This e-mail message, together with any attachments, contains information of Merck & Co., Inc. (Whitehouse Station, New Jersey, USA) that may be confidential, proprietary copyrighted and/or legally privileged, and is intended solely for the use of the individual or entity named on this message. If you are not the intended recipient, and have received this message in error, please immediately return this by e-mail and then delete it. ============================================================================= -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-devel-request@stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._