Created
August 25, 2012 05:36
-
-
Save gtuckerkellogg/3461272 to your computer and use it in GitHub Desktop.
Bar chart of NAR database issue databases over time
This file contains hidden or 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
require(RCurl) | |
myCsv <- getURL(dblink) | |
dbs <- read.csv(textConnection(myCsv)) | |
library(ggplot2) | |
names(dbs) <- c("Year","Databases") | |
dbs[[1]] <- as.factor(dbs[[1]]) | |
p <- qplot(x=Year,y=Databases,data=dbs,geom="bar",fill="gray") | |
p + theme_bw() + opts(axis.text.x = theme_text(angle=90, hjust=1.2, size=16), | |
axis.title.x=theme_text(size=16), | |
axis.title.y=theme_text(size=16,angle=90), | |
axis.text.y = theme_text(size=16), | |
legend.position="none") + | |
ylab("Databases in NAR Database issue") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Create a bar chart of the growth in databases in the NAR database issue