R boxplot – Produce box-and-whisker plot(s) of the given (grouped) values

R shell session

> boxplot
function (x, ...)
UseMethod("boxplot")


> boxplot(1,2)
> boxplot(1,2)
> boxplot(1,2,3)
> threads  levels(threads)
 [1] "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"
> maximum  boxplot(threads,maximum)
> minimum  boxplot(threads,maximum,minimum)
> actual  boxplot(threads,maximum,minimum,actual)
> png(file="Rboxplot.png")
> boxplot(threads,maximum,minimum,actual)
> dev.off()
null device
          1
>

FIXME : create a R boxplot image from the above session.

R upstream project page

http://www.r-project.org/

Leave a comment

Your email address will not be published. Required fields are marked *