[R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Jonathan Campbell
I'm using the following sequence to plot a scatter plot to PostScript. Those familiar with the Iris LDA example in MASS will recognise what I'm at. > postscript("hulda.eps", horizontal=FALSE, onefile=TRUE, height=6, width=6, > pointsize=8, paper="special") > plot(hu.ld, type = "n", xlab= "first

Re: [R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Uwe Ligges
Jonathan Campbell wrote: I'm using the following sequence to plot a scatter plot to PostScript. Those familiar with the Iris LDA example in MASS will recognise what I'm at. No, I don't recognise: - Which edition of MASS? - I don't see "hulda" nor "hu.ld". Really, do you expect us to read through t

Re: [R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Jonathan Campbell
On Apr 9, 2005 4:45 PM, Uwe Ligges <[EMAIL PROTECTED]> wrote: > Jonathan Campbell wrote: > > > I'm using the following sequence to plot a scatter plot to PostScript. > > Those familiar with the Iris LDA example in MASS will recognise what > > I'm at. > > No, I don't recognise: > > - Which editio

Re: [R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Uwe Ligges
Jonathan Campbell wrote: On Apr 9, 2005 4:45 PM, Uwe Ligges <[EMAIL PROTECTED]> wrote: Jonathan Campbell wrote: I'm using the following sequence to plot a scatter plot to PostScript. Those familiar with the Iris LDA example in MASS will recognise what I'm at. No, I don't recognise: - Which edition

Re: [R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Prof Brian Ripley
Assuming you did dev.off() or quit the session at the end, I cannot reproduce this (even with 1.9.0). If you did, it is almost surely a faulty viewer (so check the actual file): if not you would have an incomplete plot since you failed to flush the output file buffer. On Sat, 9 Apr 2005, Jonath

Re: [R] PostScript scatter plot, losing points at RHS

2005-04-09 Thread Jonathan Campbell
On Apr 9, 2005 5:29 PM, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > Assuming you did > > dev.off() > Nope, I didn't. I assumed (not really thinking at all) that dev.off() was used merely to switch between display devices. And when I do, I get the complete plot! Very many thanks. And to Uwe