Skip to content

Instantly share code, notes, and snippets.

View saraemoore's full-sized avatar

Sara E. Moore saraemoore

View GitHub Profile
@saraemoore
saraemoore / cdc_wonder_database_list.csv
Created May 30, 2017 08:58
Mapping of all web/API-accessible CDC Wonder (https://wonder.cdc.gov) database IDs to names and URLs, as of May 2017
ID Name URL
D1 Bridged-Race Population Estimates 1990-2002 http://wonder.cdc.gov/bridged-race-v2002.html
D2 Sexually Transmitted Disease Morbidity, 1984-2003 Archive http://wonder.cdc.gov/std-v2003.html
D4 OTIS 2003 TB Data, Archive http://wonder.cdc.gov/tb-v2003.html
D5 Bridged-Race Population Estimates 1990-2003 http://wonder.cdc.gov/bridged-race-v2003.html
D7 State Population Projections 2004-2030 http://wonder.cdc.gov/population-projections.html
D8 The Vaccine Adverse Event Reporting System (VAERS) http://wonder.cdc.gov/vaers.html
D9 Bridged-Race Population Estimates 1990-2004 http://wonder.cdc.gov/bridged-race-v2004.html
D10 Natality, 1995-2002 http://wonder.cdc.gov/natality-v2002.html
D11 National Program of Cancer Registries, 1999-2002 Invasive Cancer Incidence Archive http://wonder.cdc.gov/cancer-v2002.html
@saraemoore
saraemoore / boxplot_attempt1.r
Created March 25, 2014 17:27
ggplot geom_boxplot with box fill and correctly spaced x-axis scale
library(ggplot2)
ggplot(data.df, aes(x=factor(time), y=value)) +
geom_boxplot(aes(fill=measure)) +
xlab("Time (time units)") + ylab("Value (value units)") +
scale_fill_discrete(name = "Measure")