I\'m trying to display frequencies within barplot ... well, I want them somewhere in the graph: under the bars, within bars, above bars or in the legend are
When wanting to add different info the following works:
ggplot(mydata, aes(x=clusterSize, y=occurence)) + geom_bar() + geom_text(aes(x=clusterSize, y=occurence, label = mydata$otherinfo))