search for: boxplot3

Displaying 1 result from an estimated 1 matches for "boxplot3".

Did you mean: boxplot
2009 Aug 12
1
A function for plotting a boxplot with added dot and bars (for mean and SE) - please help improve my code
...xt="n" , add = T) } if(print.mean) { small.mean.and.se.table <- rbind(round(means,3),round(ciw,3), n) rownames(small.mean.and.se.table) <- c("means:", "SE's:", "N") print(t(small.mean.and.se.table)) } } # <-- end boxplot3 # Here is a small example: data(mtcars) head(mtcars) attach(mtcars) boxplot.2(mpg , list(round(wt), am) , data = mtcars, las = 2) Hope this will benefit others, and also hope that others will improve on this code and give it back to the community, Tal galili -- -------------------------...