My goal is, to plot how often some bands have played at a festival. Basically, the plot should look like this:
ggplot(plot.df2, aes(reorder(bands,count),count)) + geom_point() + coord_flip()+ theme_bw()
But i would like to have a point for every time, the band has played there. This would be a "staple of points" like this one:
ggplot(plot.df2, aes(count)) + geom_dotplot()+ coord_flip()+theme_bw()
Is this possible in ggplot2?
Here is some example-data:
bands<-c("Queens of the Stone Age","The Sounds","Beatsteaks","Billy Talent","Donots","The Hives","Tocotronic")
count<-c(6,6,5,5,5,5,5)
plot.df<-as.data.frame(cbind(bands,count))