[R] plotting pie-charts into a coordinate system

2008-05-04 Thread Georg Ehret
Dear R user group, I wish to plot small pie-charts to specific coordinates in a e.g. scatter-plot: E.g.: plot(rnorm(100),rnorm(100)) points(1,1,col=red,cex=4) - I wish to put pie(c(2,3)) at the position of the red circle... How can I do this efficiently? Thanking you and wishing you a

Re: [R] plotting pie-charts into a coordinate system

2008-05-04 Thread hadley wickham
On Sun, May 4, 2008 at 2:30 PM, Georg Ehret [EMAIL PROTECTED] wrote: Dear R user group, I wish to plot small pie-charts to specific coordinates in a e.g. scatter-plot: E.g.: plot(rnorm(100),rnorm(100)) points(1,1,col=red,cex=4) - I wish to put pie(c(2,3)) at the position of the

Re: [R] plotting pie-charts into a coordinate system

2008-05-04 Thread Paul Murrell
Hi Georg Ehret wrote: Dear R user group, I wish to plot small pie-charts to specific coordinates in a e.g. scatter-plot: E.g.: plot(rnorm(100),rnorm(100)) points(1,1,col=red,cex=4) - I wish to put pie(c(2,3)) at the position of the red circle... How can I do this efficiently?