In R I want to create a boxplot over count data instead of raw data. So my table schema looks like

Value | Count
1 | 2
2 | 1

...

Instead of

Value
1
1
2
...

Where in the second case I could simply do boxplot(x)

link|improve this question

38% accept rate
So what sort of graph are you expecting. That is just two count values and the boxplot is going to be pretty strange. Are you perhaps thinking of a barchart? – DWin Oct 28 '11 at 18:42
This is just example data, my real dataset has many more rows – John Montague Oct 28 '11 at 18:42
feedback

1 Answer

I'm sure there's a way to do what you want with the already summarized data, but if not, you can abuse the fact that rep takes vectors:

> dat <- data.frame(Value = 1:5, Count = sample.int(5))
> dat
  Value Count
1     1     1
2     2     3
3     3     4
4     4     2
5     5     5
> rep(dat$Value, dat$Count)
 [1] 1 2 2 2 3 3 3 3 4 4 5 5 5 5 5

Simply wrap boxplot around that and you should get what you want. I'm sure there's a more efficient / better way to do that, but this should work for you.

link|improve this answer
That works, but its very painful in my case because I wanted to do boxplots of multiple categories (in addition to Value, Count) in my plot. But c'est la vie. Thanks for the suggestion! – John Montague Oct 28 '11 at 21:33
@John - no worries. My other suggestion would be to look at ggplot2. I know you can pass in pre-summarized data there. Sorry I don't use base graphics that often: had.co.nz/ggplot2/geom_boxplot.html – Chase Oct 28 '11 at 22:59
feedback

Your Answer

 
or
required, but never shown

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