[R] Represent point size according to frequency

2012-10-23 Thread Henrik Pärn
essage: 44 Date: Mon, 22 Oct 2012 08:05:24 -0700 (PDT) From: swertie To: r-help@r-project.org Subject: Re: [R] Represent point size according to frequency Message-ID: <1350918324783-4647022.p...@n4.nabble.com> Content-Type: text/plain; charset=us-ascii Thank you very much. I managed to do i

Re: [R] Represent point size according to frequency

2012-10-22 Thread swertie
thank you, that looks good -- View this message in context: http://r.789695.n4.nabble.com/Represent-point-size-according-to-frequency-tp4646976p4647049.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list

Re: [R] Represent point size according to frequency

2012-10-22 Thread R. Michael Weylandt
example(jitter) library('ggplot2') example(geom_jitter) RMW On Monday, October 22, 2012, swertie wrote: > Thank you for your comment. I would be very interested, but I did not know > about jitter. Would you have a small example? > > > > > -- > View this message in context: > http://r.789695.n4.n

Re: [R] Represent point size according to frequency

2012-10-22 Thread swertie
Thank you for your comment. I would be very interested, but I did not know about jitter. Would you have a small example? -- View this message in context: http://r.789695.n4.nabble.com/Represent-point-size-according-to-frequency-tp4646976p4647023.html Sent from the R help mailing list archive a

Re: [R] Represent point size according to frequency

2012-10-22 Thread swertie
Thank you very much. I managed to do it with a similar approach and it looks like what I expected. -- View this message in context: http://r.789695.n4.nabble.com/Represent-point-size-according-to-frequency-tp4646976p4647022.html Sent from the R help mailing list archive at Nabble.com.

Re: [R] Represent point size according to frequency

2012-10-22 Thread Jose Iparraguirre
e London, WC1H 9NB www.ageuk.org.uk | ageukblog.org.uk | @ageukcampaigns -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r-project.org] On Behalf Of swertie Sent: 22 October 2012 09:35 To: r-help@r-project.org Subject: [R] Represent point size according to

Re: [R] Represent point size according to frequency

2012-10-22 Thread R. Michael Weylandt
I think it's more generally encouraged to "jitter" the points in this circumstance. RMW On Mon, Oct 22, 2012 at 9:34 AM, swertie wrote: > Hello! I would like to make a scatterplot of my data, but the problem is that > several points have the same x and y values and are represented as only one >

[R] Represent point size according to frequency

2012-10-22 Thread swertie
Hello! I would like to make a scatterplot of my data, but the problem is that several points have the same x and y values and are represented as only one point. I wonder if there is a way to represent the data points, but with point size representing the frequency of the depicted x-y value? Thank