The density plot is interesting, but the height is just a height. (https://stats.stackexchange.com/questions/147885/how-to-interpret-height-of-density-plot)
So when visualizing this, it's always helpful to provide another information such as what's the percentage for Sepal.Length
to be between, say, 5 and 6? Shade the area, and annotate the chart with the percentage of that specific area.
How can I do this with ggplot?
ggplot(iris, aes(x=Sepal.Length)) +
geom_density()
For example below, the area of interest is shaded and it shows the percentage (ideally 12% instead of 0.12)