Plot a histrogram and add a kernel density line.
histDens( x, breaks = "Sturges", ... )
Arguments
- x
values of the variable.
- breaks
passed to hist.
- ...
further arguments are passed to hist.
Examples
set.seed( 123 )
x <- rnorm( 100 )
histDens( x )
histDens( x, 20 )
histDens( x, 20, main = "My Title" )