[R] geom_boxplot nocht=TRUE

2024-08-15 Thread SIBYLLE STÖCKLI via R-help
Dear community I tried to run my ggplot() +geom_boxplot() code using nocht=TRUE, but probably my term noch=TRUE is at the wrong position? Error: Error in `geom_boxplot()`: ! Problem while converting geom to grob. ℹ Error occurred in the 1st layer. Caused by error in `ans[ypos] <- rep(y

Re: [R] geom_boxplot

2012-07-02 Thread John Kane
gt; Subject: Re: [R] geom_boxplot > > Hi > > In new ggplot2 version following works too > > p + geom_boxplot(aes(fill = factor(cyl))) + >labs(fill = "Cylinders") + ylab("Miles per Gallon")+xlab("Number > of > Cylinders") > > Re

Re: [R] geom_boxplot

2012-07-02 Thread Petr PIKAL
geom_XXX are pretty unique on the internet and search > results usually are not too bad. > > You may also want to subcribe to the ggplot2 group on google groups. > > Best wishes > > > John Kane > Kingston ON Canada > > > > -Original Message- >

Re: [R] geom_boxplot

2012-07-01 Thread John Kane
e on the internet and search results usually are not too bad. You may also want to subcribe to the ggplot2 group on google groups. Best wishes John Kane Kingston ON Canada > -Original Message- > From: hannah@gmail.com > Sent: Sun, 1 Jul 2012 08:39:20 -0400 > To: r-he

[R] geom_boxplot

2012-07-01 Thread li li
Dear all, I have a few questions regarding the boxplot output from the "geom_boxplot" function. Take as an example the output of the below: library(ggplot2) p <- ggplot(mtcars, aes(factor(cyl), mpg)) p + geom_boxplot(aes(fill = factor(am))) Here are my questions: 1. How can I define the xlab

Re: [R] geom_boxplot

2012-07-01 Thread li li
Also, it is possible to change "ylim" also? 2012/7/1 li li > Dear all, > I have a few questions regarding the boxplot output from the > "geom_boxplot" function. > Attached is the output I get. Below are my questions: > > 1. How can I define the xlab and ylab myself? > Also I would like to r