Re: [R] Problem with ggplot2 - Boxplot

2010-10-03 Thread RaoulD
Thanks a lot Hadley, this worked. Regards, Raoul -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-ggplot2-Boxplot-tp2549970p2952914.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailin

Re: [R] Problem with ggplot2 - Boxplot

2010-09-22 Thread Hadley Wickham
That implies you need to update your version of plyr. Hadley On Wed, Sep 22, 2010 at 4:10 AM, RaoulD wrote: > > Hi, > > I am using ggplot2 to create a boxplot that summarizes a continuous > variable. This code works fine for me on one PC however when I use it on > another it doesnt. > > The struc

Re: [R] Problem with ggplot2 - Boxplot

2010-09-22 Thread statquant2
Hi, are you sure you have the same version R + packages version on both ? -- View this message in context: http://r.789695.n4.nabble.com/Problem-with-ggplot2-Boxplot-tp2549970p2549997.html Sent from the R help mailing list archive at Nabble.com. __ R

Re: [R] problem with ggplot2 boxplot, groups and facets

2009-05-06 Thread stephen sefick
The code is real, yes. But I can not copy and paste it right out of the email into an R session and see what you are talking about. Look at ?dput as a way of posting data to the list. Stephen Sefick On Wed, May 6, 2009 at 1:52 AM, Zeljko Vrba wrote: > On Tue, May 05, 2009 at 09:21:49PM -0400

Re: [R] problem with ggplot2 boxplot, groups and facets

2009-05-05 Thread Zeljko Vrba
On Tue, May 05, 2009 at 09:21:49PM -0400, stephen sefick wrote: > > If you would provide a reproducible example I could tinker. > The code I posted is real. I attach here the relevant part of the data-set as CSV. Best regards, Zeljko. "","sp","wg","n","v.realtime" "9968","GP","1","1",28.924 "

Re: [R] problem with ggplot2 boxplot, groups and facets

2009-05-05 Thread stephen sefick
If you would provide a reproducible example I could tinker. Stephen Sefick On Tue, May 5, 2009 at 4:59 PM, Zeljko Vrba wrote: > I have a following problem: > > The call > > qplot(wg, v.realtime, data=df.best.medians$gv1, colour=sp,  geom="boxplot") > > works nice: for each value of the wg factor

Re: [R] Problem with ggplot2 - facet_wrap and boxplot

2009-01-07 Thread David Hajage
o. Well, it's working (replace 'group' by 'trt') Thank you very much Hadley. david 2009/1/7 hadley wickham > Hi David, > > > Here the problem : > > > > library(ggplot2) > > > > df <- data.frame(id = 1:100, x1 = c(rnorm(50), rnorm(50, 1)), x2 = > > c(rnorm(50), rnorm(50, 1.5)), x3 = c(rnor

Re: [R] Problem with ggplot2 - facet_wrap and boxplot

2009-01-07 Thread hadley wickham
Hi David, > Here the problem : > > library(ggplot2) > > df <- data.frame(id = 1:100, x1 = c(rnorm(50), rnorm(50, 1)), x2 = > c(rnorm(50), rnorm(50, 1.5)), x3 = c(rnorm(50, 0.5), rnorm(50, 2.5)), group > = as.factor(rep(c("a", "b"), each = 50))) > df.melt <- melt(df, id = c("id", "group")) > head(d

Re: [R] Problem with ggplot2

2008-12-18 Thread Short, Tom
Yep, that was it. I had an out of date plyr. Hadley straightened me out. - Tom -Original Message- From: ONKELINX, Thierry [mailto:thierry.onkel...@inbo.be] Sent: Thursday, December 18, 2008 5:03 AM To: Short, Tom; r-help@r-project.org Subject: RE: [R] Problem with ggplot2 Are you

Re: [R] Problem with ggplot2

2008-12-18 Thread ONKELINX, Thierry
Re: [R] Problem with ggplot2 I'm also getting this error with ggplot2_0.8.1 on winXP with R 2.8.0 and R 2.7.1. hadley wrote: > > Hi David, > > I inadvertently introduced a bug in ggplot in the last release. I > uploaded a fix to CRAN this morning and it should be availab

Re: [R] Problem with ggplot2

2008-12-17 Thread ts8
I'm also getting this error with ggplot2_0.8.1 on winXP with R 2.8.0 and R 2.7.1. hadley wrote: > > Hi David, > > I inadvertently introduced a bug in ggplot in the last release. I > uploaded a fix to CRAN this morning and it should be available in the > near future. Sorry for the inconveni

Re: [R] Problem with ggplot2

2008-11-20 Thread hadley wickham
Hi David, I inadvertently introduced a bug in ggplot in the last release. I uploaded a fix to CRAN this morning and it should be available in the near future. Sorry for the inconvenience. Regards, Hadley On Thu, Nov 20, 2008 at 2:49 PM, David Hajage <[EMAIL PROTECTED]> wrote: > Hello R users,