violinplot: Plots violinplots instead of boxplots

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/violinplot.R

Description

This function serves the same utility as side-by-side boxplots, only it provides more detail about the different distribution. It plots violinplots instead of boxplots. That is, instead of a box, it uses the density function to plot the density. For skewed distributions, the results look like "violins". Hence the name.

Usage

1

Arguments

x

Either a sequence of variable names, or a data frame, or a model formula

...

You can pass arguments to polygon with this. Notably, you can set the color to red with col='red', and a border color with border='blue'

Value

Returns a plot.

Author(s)

John Verzani

References

This is really the boxplot function from R/base with some minor adjustments

See Also

boxplot, densityplot

Examples

1
2
3
4
5
6
## make a "violin"
x <- rnorm(100) ;x[101:150] <- rnorm(50,5)
violinplot(x,col="brown")
f<-factor(rep(1:5,30))
## make a quintet. Note also choice of bandwidth
violinplot(x~f,col="brown",bw="SJ")

jverzani/UsingR documentation built on Aug. 3, 2020, 11:57 a.m.