InspectBoxplots {DataVisualizations} | R Documentation |
Inspect Boxplots
Description
Enables to inspect the boxplots for multiple variables in ggplot2 syntax. Each boxplot also has a point for the mean of the variable.
Usage
InspectBoxplots(Data, Names,Means=TRUE)
Arguments
Data |
Matrix containing the data. Each column is one variable. |
Names |
Optional: Names of the variables. If missing the columnnames of data are used. |
Means |
Optional: TRUE: with mean, FALSE: Only median. |
Value
The ggplot object of the boxplots
Author(s)
Felix Pape
Examples
x <- cbind(A = rnorm(200, 1, 3), B = rnorm(100, -2, 5))
InspectBoxplots(x)
[Package DataVisualizations version 1.3.2 Index]