Re: [R] Circular plot - polar plot code questions

2023-04-25 Thread Bruce Miller
Thanks yo Tim and Jim for useful suggestions re: my query on circular plots. Rethinking my goal, it appears Jim's suggestion of alternative linear plots make more sense and likley more intuitive for reader. Bruce __ R-help@r-project.org mailing

Re: [R] Circular plot - polar plot code questions

2023-04-24 Thread Jim Lemon
Hi Bruce, Reading your message, I get the idea that you want a radial.plot with arcs to indicate "at least one bat is in this state'.This can be done with an addition to the rp.type= argument. If you already have what you want in this format, it may not be worth programming it. However, if you

Re: [R] Circular plot - polar plot code questions

2023-04-24 Thread Ebert,Timothy Aaron
nt: Sunday, April 23, 2023 1:19 PM To: r-help@r-project.org Subject: [R] Circular plot - polar plot code questions [External Email] Hi all... I assume there are a host of GGplot2 users out there. I have circular plot - polar plot code questions I needed to create circular - polar plots of reproduct

[R] Circular plot - polar plot code questions

2023-04-24 Thread Bruce Miller
Hi all... I assume there are a host of GGplot2 users out there. I have circular plot - polar plot code questions I needed to create circular – polar plots of reproductive status for bats.  I found a great sample of how to do this here:

Re: [R] Circular plot

2017-02-14 Thread David L Carlson
text(-.1, 5.5, "1500", pos=2) David C From: swaraj basu [mailto:projectb...@gmail.com] Sent: Monday, February 13, 2017 3:58 PM To: David L Carlson <dcarl...@tamu.edu>; r-help@r-project.org Subject: Re: [R] Circular plot Thank you David, I could get the circle at 12 and clockwise

Re: [R] Circular plot

2017-02-13 Thread Jim Lemon
ircle (r.out = 5, r.in = 5, theta.1=.05, theta.2=2*pi-.05, lwd=3) >> with(dat, DrawCircle(r.out = 5 - score/5, r.in = 5 - score/5, >> theta.1=begin, theta.2=stop, border=col, lwd=4)) >> text(5.2, .4, "1", pos=4) >> text(5.2, -.4, "1500", pos=4) >> >

Re: [R] Circular plot

2017-02-13 Thread swaraj basu
iversity > College Station, TX 77840-4352 > > > > > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of swaraj > basu > Sent: Monday, February 13, 2017 10:34 AM > To: r-help@r-project.org > Subject: [R] Circular plot > > I

Re: [R] Circular plot

2017-02-13 Thread Bert Gunter
If you don't get a reply here: 1. Search! (try rseek.org as an R search engine). 2. Try the Bioconductor list. As this appears to be closer to their realm, they may have what you're looking for. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along

Re: [R] Circular plot

2017-02-13 Thread David L Carlson
p [mailto:r-help-boun...@r-project.org] On Behalf Of swaraj basu Sent: Monday, February 13, 2017 10:34 AM To: r-help@r-project.org Subject: [R] Circular plot I want to plot segments deleted from mitochondrial DNA of patients with neuromuscular disorders. I generate the plot on a linear chrom

[R] Circular plot

2017-02-13 Thread swaraj basu
I want to plot segments deleted from mitochondrial DNA of patients with neuromuscular disorders. I generate the plot on a linear chromosome using a code similar to as shown below start<-c(1,5,600,820) end<-c(250,75,810,1200) score<-c(7,-1,4,-6.5)