Skip to content
Prev 205153 / 398502 Next

Boxplot- input the median point and the median value

On 01/02/2010 12:53 PM, elaine kuo wrote:
Hi Elaine,

For your boxplot questions, I'll use the first example from the boxplot 
help page:

boxplot(count ~ spray, data = InsectSprays,
  col = "lightgray",yaxt="n")
axis(2,c(2,8,14,20),c(2,8,14,20))

For the "dotted to solid" question:

boxplot_info<-boxplot(count ~ spray,
  data = InsectSprays,col = "lightgray")
segments(rep(1:6,each=2),boxplot_info$stats[c(1,4),],
  rep(1:6,each=2),boxplot_info$stats[c(2,5),])

And finally, for the median value question:

boxplot_info<-boxplot(count ~ spray, data = InsectSprays,
  col = "lightgray")
points(1:6,boxplot_info$stats[3,])
text(1:6,boxplot_info$stats[3,]+1,boxplot_info$stats[3,])

A bit messy, but you get the idea.

Jim