(This article was first published on YGC » R, and kindly contributed to R-bloggers)
Gene Ontology is the de facto standard for annotation of gene products. It has been widely used in biological data mining, and I believe it will play more central role in the future.
Publications mentioning GO was collected and deposited in GO ftp, and can be accessed (ftp://ftp.geneontology.org/go/doc/).
I count the number of publicans by year, and draw a histogram, which showed that the growing trend was remarkable.
> gopub <- read.delim("ftp://ftp.geneontology.org/go/doc/biblio-data.txt")
> dim(gopub)
[1] 3626 10
> p <- ggplot(gopub, aes(year))
> p + geom_histogram(aes(y=..count..)) + opts(title = "Publications mentioning GO")
Related Posts
To leave a comment for the author, please follow the link and comment on his blog: YGC » R.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...


Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).