histDens {miscTools} | R Documentation |
Histogram with a Density Line
Description
Plot a histrogram and add a kernel density line.
Usage
histDens( x, breaks = "Sturges", ... )
Arguments
x |
values of the variable. |
breaks |
passed to |
... |
further arguments are passed to |
Author(s)
Arne Henningsen
Examples
set.seed( 123 )
x <- rnorm( 100 )
histDens( x )
histDens( x, 20 )
histDens( x, 20, main = "My Title" )
[Package miscTools version 0.6-28 Index]