Learn R Programming

miscTools (version 0.6-28)

histDens: 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 hist.

...

further arguments are passed to hist.

Author

Arne Henningsen

Examples

Run this code
   set.seed( 123 )
   x <- rnorm( 100 )
   histDens( x )
   histDens( x, 20 )
   histDens( x, 20, main = "My Title" )

Run the code above in your browser using DataLab