[R] Windows BMPs: Why grey background? How to display BMP in R?

2005-02-08 Thread Earl F. Glynn
white is supposed to be the default background for BMPs (according to ?bmp) but it doesn't work bmp(test.bmp, bg=white) plot(0) dev.off() # results in grey background # This seems to be a good enough workaround for now. bmp(test.bmp) par(bg=white) plot(0) dev.off() #

Re: [R] Windows BMPs: Why grey background? How to display BMP in R?

2005-02-08 Thread Earl F. Glynn
Duncan Murdoch [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, 8 Feb 2005 11:35:22 -0600, Earl F. Glynn [EMAIL PROTECTED] wrote : In what version of R? I just tried in 2.01 and R-patched, and it was fine. Maybe the problem is your viewer? Sorry. I thought I was using R

Re: [R] Windows BMPs: Why grey background? How to display BMP in R?

2005-02-08 Thread Prof Brian Ripley
The manual is the source code: we would have to read it to answer your questions so you may as well read it yourself. That driver was written last century by someone no longer active in the R project. On Tue, 8 Feb 2005, Earl F. Glynn wrote: Duncan Murdoch [EMAIL PROTECTED] wrote in message