View source: R/Visualization.R
boxPlot | R Documentation |
Boxplot for a matrix.
boxPlot(mat, ylabel='ARI', cols=NULL, ...)
mat |
a matrix with columns. |
ylabel |
an optional string, the name of ylabel. |
cols |
colors used in the plot |
... |
Other parameters passed to geom_boxplot. |
Nothing
Return a ggplot2 object.
nothing
Wei Liu
None
mat <- matrix(runif(100*3, 0.6, 1), 100, 3)
colnames(mat) <- paste0("Method", 1:3)
boxPlot(mat)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.