I'm teaching myself R at the moment, via the online book R for Data Science
It includes this code example:
ggplot(data = diamonds, mapping = aes(x = price, y = ..density..)) +
geom_freqpoly(mapping = aes(color = cut), binwidth = 500)
What does the "dot dot" notation in ..density.. mean? There's no explanation given.