The figure below contrasts a histogram with a smoothed histogram using
the ggplot function. To enhance the visualization, we made the histogram
semi-transparent using the alpha argument (which takes a value between 0 and 1
indicating the transparency level):
1
2
3
4
ggplot(faithful, aes(x = waiting, y = ..density..)) +