Re: [R] Adding number of non-NAs to boxplot

2008-04-21 Thread John Kane
Have a look at the addtable2plot function in the plotrix package. It should do what you want. --- stephen sefick <[EMAIL PROTECTED]> wrote: > boxplot(x[,c(2,15,28,41,54,67,80,93,106)], > ylab="mg/s", names=c("RM215", > "RM202", "RM198", "RM190", "RM185", "RM179", > "RM148", "RM119", "RM61")) >

[R] Adding number of non-NAs to boxplot

2008-04-21 Thread stephen sefick
boxplot(x[,c(2,15,28,41,54,67,80,93,106)], ylab="mg/s", names=c("RM215", "RM202", "RM198", "RM190", "RM185", "RM179", "RM148", "RM119", "RM61")) this is the code I am using to make a standard box plot. Is there a way to get the number of NA observations plotted onto the graph easily. I can alwa