Sometimes it's useful to plot a density curve over a histogram to help identify the distribution, or demonstrate the deviation between sample distributions and proposed population distributions:
data <- rnorm(1000)
hist(data, freq=FALSE)
curve(dnorm, add=TRUE)
Read more