Re: [R] Changing origin of line in radial plot

2010-10-29 Thread Jim Lemon
On 10/28/2010 10:38 PM, Gonzalo Garcia-Perate wrote: Jim, thanks for your reply, it works! but the results are not what I expected. What the code does now is completely reverse the central chart area, so what was coloured before now is white, see here http://www.flickr.com/photos/gonzillaaa/ Oka

Re: [R] Changing origin of line in radial plot

2010-10-28 Thread Gonzalo Garcia-Perate
Jim, thanks for your reply, it works! but the results are not what I expected. What the code does now is completely reverse the central chart area, so what was coloured before now is white, see here http://www.flickr.com/photos/gonzillaaa/ What I was hoping for, was having the same length lines (v

Re: [R] Changing origin of line in radial plot

2010-10-28 Thread Jim Lemon
On 10/28/2010 07:14 AM, Gonzalo Garcia-Perate wrote: I am creating radial plots to visualise popularity of a series of topics, I was wondering if someone has come across a radial plot in which the lines originate from the edge of the plot instead of the centre, does anyone know how can this be ac

Re: [R] Changing origin of line in radial plot

2010-10-27 Thread Thomas Levine
I guess you have something like this. > testlen <- c(sin(seq(0,1.98*pi,length=100))+2+rnorm(100)/10) > testpos <- seq(0,1.98*pi,length=100) > radial.plot(testlen,testpos,rp.type="p",main="Test Polygon",line.col="blue") (http://addictedtor.free.fr/graphiques/graphcode.php?graph=75) Does this work

[R] Changing origin of line in radial plot

2010-10-27 Thread Gonzalo Garcia-Perate
I am creating radial plots to visualise popularity of a series of topics, I was wondering if someone has come across a radial plot in which the lines originate from the edge of the plot instead of the centre, does anyone know how can this be achieved in R? Are there any good reasons not to do it?