Re: [R] quick "points" question

2005-09-27 Thread Prof Brian Ripley
On Tue, 27 Sep 2005, Richard Nixon wrote: > Hi > Just one of those niggles... > > I've just been trying to plot a filled circle. > I thought that this would do it > > plot(1,1,type="n") > points(1,1,pch=1,bg="blue",cex=5) > #bg: background ("fill") color for open plot symbols > > But I need to

Re: [R] quick "points" question

2005-09-27 Thread Peter Dalgaard
Richard Nixon <[EMAIL PROTECTED]> writes: > Hi > Just one of those niggles... > > I've just been trying to plot a filled circle. > I thought that this would do it > > plot(1,1,type="n") > points(1,1,pch=1,bg="blue",cex=5) > #bg: background ("fill") color for open plot symbols > > But I need

Re: [R] quick "points" question

2005-09-27 Thread Uwe Ligges
Richard Nixon wrote: > Hi > Just one of those niggles... > > I've just been trying to plot a filled circle. > I thought that this would do it > > plot(1,1,type="n") > points(1,1,pch=1,bg="blue",cex=5) > #bg: background ("fill") color for open plot symbols > > But I need to do this instead >

[R] quick "points" question

2005-09-27 Thread Richard Nixon
Hi Just one of those niggles... I've just been trying to plot a filled circle. I thought that this would do it plot(1,1,type="n") points(1,1,pch=1,bg="blue",cex=5) #bg: background ("fill") color for open plot symbols But I need to do this instead points(1.2,1,pch=19,col="blue",cex=5) Am I m