Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I am very new to R and to any packages in R. I looked at the ggplot2 documentation but could not find this. I want a box plot of variable boxthis with respect to two factors f1 and f2. That is suppose both f1 and f2 are factor variables and each of them takes two values and boxthis is a continuous variable. I want to get 4 boxplots on a graph, each corresponding to one combination from the possible combinations that f1 and f2 can take. I think using the basic functionality in R, this can be done by

> boxplot(boxthis ~ f1 * f2 , data = datasetname) 

Thanks in advance for any help.

share|improve this question
Please provide sample data, to in order to get precise answers. – mpiktas May 31 '11 at 19:21
This question would almost certainly be a better fit for stackoverflow.com, as there is little specifically statistical here. – richiemorrisroe May 31 '11 at 20:16

1 Answer

up vote 9 down vote accepted

I can think of two ways to accomplish this:

1. Create all combinations of f1 and f2 outside of the ggplot-function

library(ggplot2)

df <- data.frame(f1=factor(rbinom(100, 1, 0.45), label=c("m","w")), 
                 f2=factor(rbinom(100, 1, 0.45), label=c("young","old")),
                 boxthis=rnorm(100))

df$f1f2 <- interaction(df$f1, df$f2)

ggplot(aes(y = boxthis, x = f1f2), data = df) + geom_boxplot()

enter image description here

2. use colour/fill/etc.

ggplot(aes(y = boxthis, x = f2, fill = f1), data = df) + geom_boxplot()

enter image description here

share|improve this answer
Great! Thanks. I liked the first solution. – Curious2learn May 31 '11 at 21:28
1  
(+1) I like the use of interaction(). Of note, we can specify geom_boxplot(position = position_dodge(width = .9)) to add extra space between boxplots. – chl May 31 '11 at 22:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.