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.