r - Adding labels to ggplot bar chart - Stack Overflow
This would be a good opportunity for you to start moving away from using qplot, in favor of ggplot. This will be much easier in the long run, trust me. Here's a start: library(scales) ggplot(data = x,aes(x = factor(filename),y = value)) + geom_bar(aes(fil...