The following code:
library(ggplot2)
theData <- data.frame(category <- sample(LETTERS[1:3], 1000, replace = T),
value <- rnorm(1000))
thePlot <- ggplot(theData,
aes(x = category, y = value))
thePlot <- thePlot + geom_violin(fill = "BLACK")
thePlot <- thePlot + coord_flip()
print(thePlot)
will produce this plot:

But I would like to achieve an effect whereby the alpha value of the fill (and colour, ideally) of each violin density decreases in less-dense areas. That is, the violin shape fades into the background where the height of the curve is small, but is dark and opaque where the curve is tall. Something like this type of effect:

Unfortunately, those coefficient plots are produced by use of a pretty ugly hack, and given the flexibility of the new geom_violin, I am wondering if there is a straightforward way to implement this alpha fade in the use of geom_violin.
Thanks for any insight you can offer!
