histogram: Simple function to create a histogram
Description
Simple function to create a histogram
Usage
histogram(
  vector,
  bins = NULL,
  theme = ggplot2::theme_bw(),
  xLabel = NULL,
  yLabel = "Count"
)
Arguments
- vector
- A variable or vector. 
- bins
- The number of bins; when 0, either the number of unique
values in - vectoror- 20, whichever is lower.
 
- theme
- The ggplot2 theme to use. 
- xLabel, yLabel
- Labels for x and y axes; variable name is used for
x axis if no label is specified. 
Examples
Run this coderosetta::histogram(mtcars$mpg);
Run the code above in your browser using DataLab