├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R └── package.R ├── README.Rmd ├── README.md ├── data-ext ├── codebook-us-house-1976–2016.md ├── codebook-us-president-1976–2016.md ├── codebook-us-senate-1976–2016.md ├── county_ids.R ├── county_ids.txt ├── county_sub_ids.R ├── county_sub_ids.txt ├── state_ids.R └── state_ids.csv ├── data ├── county_ids.rda ├── county_sub_ids.rda ├── house_precincts_2016.rda ├── local_precincts_2016.rda ├── presidential_precincts_2016.rda ├── presidential_states_2016.rda ├── senate_precincts_2016.rda ├── senate_states_2016.rda ├── state_ids.rda └── state_precincts_2016.rda ├── docs ├── LICENSE-text.html ├── authors.html ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── county_ids.html │ ├── county_sub_ids.html │ ├── elections.html │ ├── house_districts_1976_2016.html │ ├── house_precincts_2016.html │ ├── index.html │ ├── local_precincts_2016.html │ ├── presidential_precincts_2016.html │ ├── presidential_states_1976_2016.html │ ├── senate_precincts_2016.html │ ├── senate_states_1976_2016.html │ ├── state_ids.html │ └── state_precincts_2016.html └── man ├── county_ids.Rd ├── county_sub_ids.Rd ├── elections.Rd ├── house_districts_1976_2016.Rd ├── house_precincts_2016.Rd ├── local_precincts_2016.Rd ├── presidential_precincts_2016.Rd ├── presidential_states_1976_2016.Rd ├── senate_precincts_2016.Rd ├── senate_states_1976_2016.Rd ├── state_ids.Rd └── state_precincts_2016.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/R/package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/README.md -------------------------------------------------------------------------------- /data-ext/codebook-us-house-1976–2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/codebook-us-house-1976–2016.md -------------------------------------------------------------------------------- /data-ext/codebook-us-president-1976–2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/codebook-us-president-1976–2016.md -------------------------------------------------------------------------------- /data-ext/codebook-us-senate-1976–2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/codebook-us-senate-1976–2016.md -------------------------------------------------------------------------------- /data-ext/county_ids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/county_ids.R -------------------------------------------------------------------------------- /data-ext/county_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/county_ids.txt -------------------------------------------------------------------------------- /data-ext/county_sub_ids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/county_sub_ids.R -------------------------------------------------------------------------------- /data-ext/county_sub_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/county_sub_ids.txt -------------------------------------------------------------------------------- /data-ext/state_ids.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/state_ids.R -------------------------------------------------------------------------------- /data-ext/state_ids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data-ext/state_ids.csv -------------------------------------------------------------------------------- /data/county_ids.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/county_ids.rda -------------------------------------------------------------------------------- /data/county_sub_ids.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/county_sub_ids.rda -------------------------------------------------------------------------------- /data/house_precincts_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/house_precincts_2016.rda -------------------------------------------------------------------------------- /data/local_precincts_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/local_precincts_2016.rda -------------------------------------------------------------------------------- /data/presidential_precincts_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/presidential_precincts_2016.rda -------------------------------------------------------------------------------- /data/presidential_states_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/presidential_states_2016.rda -------------------------------------------------------------------------------- /data/senate_precincts_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/senate_precincts_2016.rda -------------------------------------------------------------------------------- /data/senate_states_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/senate_states_2016.rda -------------------------------------------------------------------------------- /data/state_ids.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/state_ids.rda -------------------------------------------------------------------------------- /data/state_precincts_2016.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/data/state_precincts_2016.rda -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/county_ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/county_ids.html -------------------------------------------------------------------------------- /docs/reference/county_sub_ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/county_sub_ids.html -------------------------------------------------------------------------------- /docs/reference/elections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/elections.html -------------------------------------------------------------------------------- /docs/reference/house_districts_1976_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/house_districts_1976_2016.html -------------------------------------------------------------------------------- /docs/reference/house_precincts_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/house_precincts_2016.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/local_precincts_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/local_precincts_2016.html -------------------------------------------------------------------------------- /docs/reference/presidential_precincts_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/presidential_precincts_2016.html -------------------------------------------------------------------------------- /docs/reference/presidential_states_1976_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/presidential_states_1976_2016.html -------------------------------------------------------------------------------- /docs/reference/senate_precincts_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/senate_precincts_2016.html -------------------------------------------------------------------------------- /docs/reference/senate_states_1976_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/senate_states_1976_2016.html -------------------------------------------------------------------------------- /docs/reference/state_ids.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/state_ids.html -------------------------------------------------------------------------------- /docs/reference/state_precincts_2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/docs/reference/state_precincts_2016.html -------------------------------------------------------------------------------- /man/county_ids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/county_ids.Rd -------------------------------------------------------------------------------- /man/county_sub_ids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/county_sub_ids.Rd -------------------------------------------------------------------------------- /man/elections.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/elections.Rd -------------------------------------------------------------------------------- /man/house_districts_1976_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/house_districts_1976_2016.Rd -------------------------------------------------------------------------------- /man/house_precincts_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/house_precincts_2016.Rd -------------------------------------------------------------------------------- /man/local_precincts_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/local_precincts_2016.Rd -------------------------------------------------------------------------------- /man/presidential_precincts_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/presidential_precincts_2016.Rd -------------------------------------------------------------------------------- /man/presidential_states_1976_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/presidential_states_1976_2016.Rd -------------------------------------------------------------------------------- /man/senate_precincts_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/senate_precincts_2016.Rd -------------------------------------------------------------------------------- /man/senate_states_1976_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/senate_states_1976_2016.Rd -------------------------------------------------------------------------------- /man/state_ids.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/state_ids.Rd -------------------------------------------------------------------------------- /man/state_precincts_2016.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MEDSL/elections/HEAD/man/state_precincts_2016.Rd --------------------------------------------------------------------------------