I found this expression while working on ggplot.
qplot(carat, ..density.., data = diamonds, facets = color ~ ., geom = "histogram", binwidth = 0.1, xlim = c(0, 3))
How is ..density..
interpreted by R?
Clearly it is not a variable and it is processed inside the function to convey that we want to use the density but I would like to undertand how it works at the language level.