File:Bacterial and archeal genome sequences submitted to Genbank.svg

Original file(SVG file, nominally 1,350 × 450 pixels, file size: 46 KB)

Summary

Description
English: Plot of the total number of prokaryotic genomes submitted to Genbank as a function of time. Based on data from genome reports.
Date
Source Own work
Author Estevezj
SVG development
InfoField
W3C grn 
The SVG code is valid.
R logo 
This chart was created with R.
Gnome-mime-application-x-font-ttf 
The file size of this SVG image may be irrationally large because its text has been converted to paths inhibiting translations.
Source code
InfoField

R code

# Download our tables from NCBI's FTP site. Accessed 14:30PST, 18 December 2012
prok <- read.table("ftp://ftp.ncbi.nlm.nih.gov/genomes/GENOME_REPORTS/prokaryotes.txt", sep="\t", comment.char="!", header=T)

# Pull release dates, while dropping rows lacking a release date.
prok  <- as.Date(prok$Release.Date[prok$Release.Date != '-'],format="%Y/%m/%d")

# Bin our dates by month and year, tabulate, and save to a dataframe.
prok.cut <- as.data.frame( 
  table(
    as.Date(
      cut(prok, "month")
      )
    )
  )

# Correct our column titles, calculate a running total, and reconvert from factor to date
colnames(prok.cut) <- c("Date", "Total")
prok.cut$Total <- cumsum(prok.cut$Total)
prok.cut$Date <- as.Date(prok.cut$Date)


# Draw our plot
library("ggplot2")
p <- ggplot(prok.cut, aes(Date, Total))


# Save our plot to SVG
library(grDevices)
svg(filename='ncbi-genomes.svg', width = 15, height = 5)
p +  geom_area() +  xlab("") +  ylab("")
# Alternately, with titles
# +  ggtitle("Bacterial and archeal genome sequences submitted to Genbank") + xlab('Time') +  ylab("Total number of genomes")
dev.off()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

18 December 2012

image/svg+xml

d9421508fee101dc1895f7d2461a15e78503a419

46,931 byte

450 pixel

1,350 pixel

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current02:00, 19 December 2012Thumbnail for version as of 02:00, 19 December 20121,350 × 450 (46 KB)Estevezjadded english captions
01:57, 19 December 2012Thumbnail for version as of 01:57, 19 December 20121,350 × 450 (17 KB)EstevezjUser created page with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata