Skip to content

Instantly share code, notes, and snippets.

@geoffjentry
Created January 2, 2014 21:09
Show Gist options
  • Save geoffjentry/8226975 to your computer and use it in GitHub Desktop.
Save geoffjentry/8226975 to your computer and use it in GitHub Desktop.
library(ggplot2)
png(file="code2013_tiobe.png", width=640, height=640)
ggplot(code2013_lang_table, aes(x=code2013_langs, y=Count, fill=code2013_tier)) +
geom_bar(stat="identity") +
xlab("Language") + ylab("Count") +
ggtitle("#code2013 Languages Sorted By TIOBE Rankings") +
coord_flip()
dev.off()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment