Created
January 2, 2014 21:09
-
-
Save geoffjentry/8226975 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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