Re: [R] plot-parameter pch without influence when plotting a data-frame

2008-10-10 Thread hadley wickham
On Thu, Oct 9, 2008 at 8:19 AM, John Kane <[EMAIL PROTECTED]> wrote: > --- On Thu, 10/9/08, Oliver Bandel <[EMAIL PROTECTED]> wrote: > >> From: Oliver Bandel <[EMAIL PROTECTED]> >> Subject: Re: [R] plot-parameter pch without influence when plotting a >

Re: [R] plot-parameter pch without influence when plotting a data-frame

2008-10-10 Thread John Kane
--- On Fri, 10/10/08, Oliver Bandel <[EMAIL PROTECTED]> wrote: > From: Oliver Bandel <[EMAIL PROTECTED]> > Subject: Re: [R] plot-parameter pch without influence when plotting a > data-frame > To: [EMAIL PROTECTED] > > > > > > > what is the re

Re: [R] plot-parameter pch without influence when plotting a data-frame

2008-10-10 Thread Oliver Bandel
Zitat von John Kane <[EMAIL PROTECTED]>: > --- On Thu, 10/9/08, Oliver Bandel <[EMAIL PROTECTED]> wrote: > > > From: Oliver Bandel <[EMAIL PROTECTED]> > > Subject: Re: [R] plot-parameter pch without influence when plotting > a data-frame > > To: &

Re: [R] plot-parameter pch without influence when plotting a data-frame

2008-10-09 Thread John Kane
--- On Thu, 10/9/08, Oliver Bandel <[EMAIL PROTECTED]> wrote: > From: Oliver Bandel <[EMAIL PROTECTED]> > Subject: Re: [R] plot-parameter pch without influence when plotting a > data-frame > To: "Gerhard Schön, UKE Hamburg" <[EMAIL PROTECTED]> > Cc

Re: [R] plot-parameter pch without influence when plotting a data-frame

2008-10-09 Thread Oliver Bandel
Zitat von "Gerhard Schön, UKE Hamburg" <[EMAIL PROTECTED]>: > what is the result of: > > df <- data.frame(x = 1:5, y = 1:5) > plot(df, pch = 1:5) It prints different symbols. It seemed, that my pch-settings had an effect, but some symbols were very similar, especially, when a lot of them are plo

[R] plot-parameter pch without influence when plotting a data-frame

2008-10-09 Thread Oliver Bandel
Hello, I'm plotting a data-frame and use plot(..., pch=...) as well as setting pch with par(pch=...) but always get the default symbol (circle) for the plots. Does pch have no effect, when plotting a complete data-frame, instead of certain values/vectors? How to change the behaviour?