├── .gitignore ├── 926-debate-wordclouds ├── Clinton.txt ├── Holt.txt ├── Trump.txt ├── clinton.png ├── holt.png ├── readme.MD ├── trump.png └── wordclouds.r ├── LICENSE ├── README.md ├── disparities ├── README.md ├── arrest-disparities.csv ├── disparitiesPDF.R ├── disparitiesPNG.R └── searches.png ├── fecgrabber ├── fecgrabber.r └── readme.MD ├── lookups ├── mncitypop.csv ├── mncitypop.r ├── mncountypop.csv ├── mncountypop.r ├── mnleg17.csv ├── mnvoterreg.csv ├── mnvoterreg.r └── readme.md ├── misc-images └── fec-screengrab.jpg ├── mn-pop-pyramid-gifs ├── README.md ├── animated-pop-pyramids-mn.R ├── mn-age-projections.csv └── scott.gif ├── mn-sots-analysis ├── Comparison Tables │ ├── all-years.csv │ ├── anderson.csv │ ├── carlson.csv │ ├── dayton.csv │ ├── dfl.csv │ ├── gop.csv │ ├── levander.csv │ ├── pawlenty.csv │ ├── perpich.csv │ ├── quie.csv │ └── ventura.csv ├── Compiled Texts │ ├── all-years.txt │ ├── dfl.txt │ └── gop.txt ├── Governor Texts │ ├── anderson.txt │ ├── carlson.txt │ ├── dayton.txt │ ├── levander.txt │ ├── pawlenty.txt │ ├── perpich.txt │ ├── quie.txt │ └── ventura.txt ├── README.md ├── Summary Table.xlsx ├── Yearly Texts │ ├── 1969.txt │ ├── 1973.txt │ ├── 1974.txt │ ├── 1976.txt │ ├── 1977.txt │ ├── 1980.txt │ ├── 1981.txt │ ├── 1982.txt │ ├── 1983.txt │ ├── 1984.txt │ ├── 1985.txt │ ├── 1987.txt │ ├── 1988.txt │ ├── 1989.txt │ ├── 1990.txt │ ├── 1991.txt │ ├── 1992.txt │ ├── 1993.txt │ ├── 1994.txt │ ├── 1995.txt │ ├── 1996.txt │ ├── 1997.txt │ ├── 1998.txt │ ├── 1999.txt │ ├── 2001.txt │ ├── 2002.txt │ ├── 2003.txt │ ├── 2004.txt │ ├── 2005.txt │ ├── 2006.txt │ ├── 2007.txt │ ├── 2008.txt │ ├── 2009.txt │ ├── 2010.txt │ ├── 2011.txt │ ├── 2012.txt │ ├── 2013.txt │ ├── 2014.txt │ └── 2015.txt ├── compilation-terminal-code.txt ├── gov_count_words.R └── gov_wordcloud.R ├── mnleg-ideology-2008 ├── 08mnleg-small.png ├── 08mnleg.csv ├── 08mnleg.png ├── README.md └── mnleg-graph.R ├── mnleg-nominate ├── mnleg-nominate-17.r ├── mnleg-nominate.png ├── mnleg-nominate.r ├── nominate-elex.r ├── nominate-margin.png ├── nominate-rank.r ├── nominate-scores.csv ├── nomscores17.csv ├── readme.MD └── romney.csv ├── mnleg-prez ├── mnleg_prez.R └── readme.MD ├── pollodds ├── readme.MD └── winnerodds.R ├── sos-scraper ├── cd2.cpg ├── cd2.dbf ├── cd2.prj ├── cd2.qpj ├── cd2.shp ├── cd2.shx ├── cd2map.png ├── countycode-fips converter.csv ├── electionR.r ├── readme.MD └── turnout.r ├── speeding ├── animation.R ├── images │ ├── agegender.png │ ├── milesover.png │ ├── speeding-35e.png │ ├── speeding-94.png │ ├── speeding-days.png │ ├── speeding-hours-am.gif │ ├── speeding-hours-pm.gif │ ├── speeding-hours-polar.gif │ ├── speeding-hours.gif │ ├── speeding-map.png │ ├── speeding-milesover.png │ ├── speeding-months.gif │ ├── speeding-overall.png │ ├── speeding-time.png │ └── speeding-years.gif ├── mn counties │ ├── County.htm │ ├── county.dbf │ ├── county.sbn │ ├── county.sbx │ ├── county.shp │ ├── county.shx │ ├── county_att.htm │ ├── nd.dbg │ └── sqlnet.log ├── printexports.R ├── readme.md ├── speeding-clean.csv ├── speeding-raw.csv ├── speeding.md ├── speeding_files │ └── figure-markdown_github │ │ ├── age-1.png │ │ ├── cook-1.png │ │ ├── cook.png │ │ ├── county-1.png │ │ ├── countymap-1.png │ │ ├── countypercap-1.png │ │ ├── hist-1.png │ │ ├── i35e-1.png │ │ ├── i94-1.png │ │ ├── metro-1.png │ │ ├── plot.hours-1.png │ │ ├── plot.hours-gender-1.png │ │ ├── plot.month-1.png │ │ ├── plot.time-1.png │ │ ├── plot.time.day-1.png │ │ ├── plot.weekday-1.png │ │ ├── plot.yday-1.png │ │ ├── plot.year-1.png │ │ ├── postedspeed-1.png │ │ └── teenspeed-1.png └── stateth.zip ├── st-anthony-police ├── .Rhistory ├── README.md ├── st-anthony-data.R ├── st-anthony-stats.csv ├── st-anthony-viz.R ├── stanthony-stops.png ├── stanthony.zip ├── summary-stats-readable.csv └── summary-stats.csv ├── syrian-map ├── Maps │ ├── syrian_log.jpg │ ├── syrian_norm.jpg │ └── syrian_pc.jpg ├── README.md ├── Small Maps │ ├── syrian_log_sm.jpg │ ├── syrian_norm_sm.jpg │ └── syrian_pc_sm.jpg └── syrian-code.R └── votemapper ├── 2017-03-02-accepting Senate Sunday Sales bill.png ├── housemap ├── Hsorted.cpg ├── Hsorted.dbf ├── Hsorted.prj ├── Hsorted.qpj ├── Hsorted.shp └── Hsorted.shx ├── housevotetracker.R ├── readme.md ├── senatemap ├── sorted.cpg ├── sorted.dbf ├── sorted.prj ├── sorted.qpj ├── sorted.shp └── sorted.shx └── senvotetracker.R /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /926-debate-wordclouds/Clinton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/Clinton.txt -------------------------------------------------------------------------------- /926-debate-wordclouds/Holt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/Holt.txt -------------------------------------------------------------------------------- /926-debate-wordclouds/Trump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/Trump.txt -------------------------------------------------------------------------------- /926-debate-wordclouds/clinton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/clinton.png -------------------------------------------------------------------------------- /926-debate-wordclouds/holt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/holt.png -------------------------------------------------------------------------------- /926-debate-wordclouds/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/readme.MD -------------------------------------------------------------------------------- /926-debate-wordclouds/trump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/trump.png -------------------------------------------------------------------------------- /926-debate-wordclouds/wordclouds.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/926-debate-wordclouds/wordclouds.r -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/README.md -------------------------------------------------------------------------------- /disparities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/disparities/README.md -------------------------------------------------------------------------------- /disparities/arrest-disparities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/disparities/arrest-disparities.csv -------------------------------------------------------------------------------- /disparities/disparitiesPDF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/disparities/disparitiesPDF.R -------------------------------------------------------------------------------- /disparities/disparitiesPNG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/disparities/disparitiesPNG.R -------------------------------------------------------------------------------- /disparities/searches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/disparities/searches.png -------------------------------------------------------------------------------- /fecgrabber/fecgrabber.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/fecgrabber/fecgrabber.r -------------------------------------------------------------------------------- /fecgrabber/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/fecgrabber/readme.MD -------------------------------------------------------------------------------- /lookups/mncitypop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mncitypop.csv -------------------------------------------------------------------------------- /lookups/mncitypop.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mncitypop.r -------------------------------------------------------------------------------- /lookups/mncountypop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mncountypop.csv -------------------------------------------------------------------------------- /lookups/mncountypop.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mncountypop.r -------------------------------------------------------------------------------- /lookups/mnleg17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mnleg17.csv -------------------------------------------------------------------------------- /lookups/mnvoterreg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mnvoterreg.csv -------------------------------------------------------------------------------- /lookups/mnvoterreg.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/mnvoterreg.r -------------------------------------------------------------------------------- /lookups/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/lookups/readme.md -------------------------------------------------------------------------------- /misc-images/fec-screengrab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/misc-images/fec-screengrab.jpg -------------------------------------------------------------------------------- /mn-pop-pyramid-gifs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-pop-pyramid-gifs/README.md -------------------------------------------------------------------------------- /mn-pop-pyramid-gifs/animated-pop-pyramids-mn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-pop-pyramid-gifs/animated-pop-pyramids-mn.R -------------------------------------------------------------------------------- /mn-pop-pyramid-gifs/mn-age-projections.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-pop-pyramid-gifs/mn-age-projections.csv -------------------------------------------------------------------------------- /mn-pop-pyramid-gifs/scott.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-pop-pyramid-gifs/scott.gif -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/all-years.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/all-years.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/anderson.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/anderson.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/carlson.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/carlson.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/dayton.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/dayton.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/dfl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/dfl.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/gop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/gop.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/levander.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/levander.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/pawlenty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/pawlenty.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/perpich.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/perpich.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/quie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/quie.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Comparison Tables/ventura.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Comparison Tables/ventura.csv -------------------------------------------------------------------------------- /mn-sots-analysis/Compiled Texts/all-years.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Compiled Texts/all-years.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Compiled Texts/dfl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Compiled Texts/dfl.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Compiled Texts/gop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Compiled Texts/gop.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/anderson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/anderson.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/carlson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/carlson.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/dayton.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/dayton.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/levander.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/levander.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/pawlenty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/pawlenty.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/perpich.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/perpich.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/quie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/quie.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Governor Texts/ventura.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Governor Texts/ventura.txt -------------------------------------------------------------------------------- /mn-sots-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/README.md -------------------------------------------------------------------------------- /mn-sots-analysis/Summary Table.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Summary Table.xlsx -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1969.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1969.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1973.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1973.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1974.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1974.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1976.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1976.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1977.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1977.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1980.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1980.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1981.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1981.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1982.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1982.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1983.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1983.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1984.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1984.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1985.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1985.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1987.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1987.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1988.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1988.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1989.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1989.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1990.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1990.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1991.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1991.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1992.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1992.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1993.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1993.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1994.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1994.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1995.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1995.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1996.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1996.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1997.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1997.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1998.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1998.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/1999.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/1999.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2001.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2002.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2003.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2004.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2005.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2006.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2007.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2008.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2009.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2010.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2011.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2012.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2013.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2014.txt -------------------------------------------------------------------------------- /mn-sots-analysis/Yearly Texts/2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/Yearly Texts/2015.txt -------------------------------------------------------------------------------- /mn-sots-analysis/compilation-terminal-code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/compilation-terminal-code.txt -------------------------------------------------------------------------------- /mn-sots-analysis/gov_count_words.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/gov_count_words.R -------------------------------------------------------------------------------- /mn-sots-analysis/gov_wordcloud.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mn-sots-analysis/gov_wordcloud.R -------------------------------------------------------------------------------- /mnleg-ideology-2008/08mnleg-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-ideology-2008/08mnleg-small.png -------------------------------------------------------------------------------- /mnleg-ideology-2008/08mnleg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-ideology-2008/08mnleg.csv -------------------------------------------------------------------------------- /mnleg-ideology-2008/08mnleg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-ideology-2008/08mnleg.png -------------------------------------------------------------------------------- /mnleg-ideology-2008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-ideology-2008/README.md -------------------------------------------------------------------------------- /mnleg-ideology-2008/mnleg-graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-ideology-2008/mnleg-graph.R -------------------------------------------------------------------------------- /mnleg-nominate/mnleg-nominate-17.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/mnleg-nominate-17.r -------------------------------------------------------------------------------- /mnleg-nominate/mnleg-nominate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/mnleg-nominate.png -------------------------------------------------------------------------------- /mnleg-nominate/mnleg-nominate.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/mnleg-nominate.r -------------------------------------------------------------------------------- /mnleg-nominate/nominate-elex.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/nominate-elex.r -------------------------------------------------------------------------------- /mnleg-nominate/nominate-margin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/nominate-margin.png -------------------------------------------------------------------------------- /mnleg-nominate/nominate-rank.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/nominate-rank.r -------------------------------------------------------------------------------- /mnleg-nominate/nominate-scores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/nominate-scores.csv -------------------------------------------------------------------------------- /mnleg-nominate/nomscores17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/nomscores17.csv -------------------------------------------------------------------------------- /mnleg-nominate/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/readme.MD -------------------------------------------------------------------------------- /mnleg-nominate/romney.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-nominate/romney.csv -------------------------------------------------------------------------------- /mnleg-prez/mnleg_prez.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-prez/mnleg_prez.R -------------------------------------------------------------------------------- /mnleg-prez/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/mnleg-prez/readme.MD -------------------------------------------------------------------------------- /pollodds/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/pollodds/readme.MD -------------------------------------------------------------------------------- /pollodds/winnerodds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/pollodds/winnerodds.R -------------------------------------------------------------------------------- /sos-scraper/cd2.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /sos-scraper/cd2.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2.dbf -------------------------------------------------------------------------------- /sos-scraper/cd2.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2.prj -------------------------------------------------------------------------------- /sos-scraper/cd2.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2.qpj -------------------------------------------------------------------------------- /sos-scraper/cd2.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2.shp -------------------------------------------------------------------------------- /sos-scraper/cd2.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2.shx -------------------------------------------------------------------------------- /sos-scraper/cd2map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/cd2map.png -------------------------------------------------------------------------------- /sos-scraper/countycode-fips converter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/countycode-fips converter.csv -------------------------------------------------------------------------------- /sos-scraper/electionR.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/electionR.r -------------------------------------------------------------------------------- /sos-scraper/readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/readme.MD -------------------------------------------------------------------------------- /sos-scraper/turnout.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/sos-scraper/turnout.r -------------------------------------------------------------------------------- /speeding/animation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/animation.R -------------------------------------------------------------------------------- /speeding/images/agegender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/agegender.png -------------------------------------------------------------------------------- /speeding/images/milesover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/milesover.png -------------------------------------------------------------------------------- /speeding/images/speeding-35e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-35e.png -------------------------------------------------------------------------------- /speeding/images/speeding-94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-94.png -------------------------------------------------------------------------------- /speeding/images/speeding-days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-days.png -------------------------------------------------------------------------------- /speeding/images/speeding-hours-am.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-hours-am.gif -------------------------------------------------------------------------------- /speeding/images/speeding-hours-pm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-hours-pm.gif -------------------------------------------------------------------------------- /speeding/images/speeding-hours-polar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-hours-polar.gif -------------------------------------------------------------------------------- /speeding/images/speeding-hours.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-hours.gif -------------------------------------------------------------------------------- /speeding/images/speeding-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-map.png -------------------------------------------------------------------------------- /speeding/images/speeding-milesover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-milesover.png -------------------------------------------------------------------------------- /speeding/images/speeding-months.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-months.gif -------------------------------------------------------------------------------- /speeding/images/speeding-overall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-overall.png -------------------------------------------------------------------------------- /speeding/images/speeding-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-time.png -------------------------------------------------------------------------------- /speeding/images/speeding-years.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/images/speeding-years.gif -------------------------------------------------------------------------------- /speeding/mn counties/County.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/County.htm -------------------------------------------------------------------------------- /speeding/mn counties/county.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county.dbf -------------------------------------------------------------------------------- /speeding/mn counties/county.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county.sbn -------------------------------------------------------------------------------- /speeding/mn counties/county.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county.sbx -------------------------------------------------------------------------------- /speeding/mn counties/county.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county.shp -------------------------------------------------------------------------------- /speeding/mn counties/county.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county.shx -------------------------------------------------------------------------------- /speeding/mn counties/county_att.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/county_att.htm -------------------------------------------------------------------------------- /speeding/mn counties/nd.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/nd.dbg -------------------------------------------------------------------------------- /speeding/mn counties/sqlnet.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/mn counties/sqlnet.log -------------------------------------------------------------------------------- /speeding/printexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/printexports.R -------------------------------------------------------------------------------- /speeding/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/readme.md -------------------------------------------------------------------------------- /speeding/speeding-clean.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding-clean.csv -------------------------------------------------------------------------------- /speeding/speeding-raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding-raw.csv -------------------------------------------------------------------------------- /speeding/speeding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding.md -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/age-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/age-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/cook-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/cook-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/cook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/cook.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/county-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/county-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/countymap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/countymap-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/countypercap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/countypercap-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/hist-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/hist-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/i35e-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/i35e-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/i94-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/i94-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/metro-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/metro-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.hours-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.hours-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.hours-gender-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.hours-gender-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.month-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.month-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.time-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.time-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.time.day-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.time.day-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.weekday-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.weekday-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.yday-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.yday-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/plot.year-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/plot.year-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/postedspeed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/postedspeed-1.png -------------------------------------------------------------------------------- /speeding/speeding_files/figure-markdown_github/teenspeed-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/speeding_files/figure-markdown_github/teenspeed-1.png -------------------------------------------------------------------------------- /speeding/stateth.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/speeding/stateth.zip -------------------------------------------------------------------------------- /st-anthony-police/.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/.Rhistory -------------------------------------------------------------------------------- /st-anthony-police/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/README.md -------------------------------------------------------------------------------- /st-anthony-police/st-anthony-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/st-anthony-data.R -------------------------------------------------------------------------------- /st-anthony-police/st-anthony-stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/st-anthony-stats.csv -------------------------------------------------------------------------------- /st-anthony-police/st-anthony-viz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/st-anthony-viz.R -------------------------------------------------------------------------------- /st-anthony-police/stanthony-stops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/stanthony-stops.png -------------------------------------------------------------------------------- /st-anthony-police/stanthony.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/stanthony.zip -------------------------------------------------------------------------------- /st-anthony-police/summary-stats-readable.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/summary-stats-readable.csv -------------------------------------------------------------------------------- /st-anthony-police/summary-stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/st-anthony-police/summary-stats.csv -------------------------------------------------------------------------------- /syrian-map/Maps/syrian_log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Maps/syrian_log.jpg -------------------------------------------------------------------------------- /syrian-map/Maps/syrian_norm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Maps/syrian_norm.jpg -------------------------------------------------------------------------------- /syrian-map/Maps/syrian_pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Maps/syrian_pc.jpg -------------------------------------------------------------------------------- /syrian-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/README.md -------------------------------------------------------------------------------- /syrian-map/Small Maps/syrian_log_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Small Maps/syrian_log_sm.jpg -------------------------------------------------------------------------------- /syrian-map/Small Maps/syrian_norm_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Small Maps/syrian_norm_sm.jpg -------------------------------------------------------------------------------- /syrian-map/Small Maps/syrian_pc_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/Small Maps/syrian_pc_sm.jpg -------------------------------------------------------------------------------- /syrian-map/syrian-code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/syrian-map/syrian-code.R -------------------------------------------------------------------------------- /votemapper/2017-03-02-accepting Senate Sunday Sales bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/2017-03-02-accepting Senate Sunday Sales bill.png -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.cpg: -------------------------------------------------------------------------------- 1 | utf-8 -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housemap/Hsorted.dbf -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housemap/Hsorted.prj -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housemap/Hsorted.qpj -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housemap/Hsorted.shp -------------------------------------------------------------------------------- /votemapper/housemap/Hsorted.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housemap/Hsorted.shx -------------------------------------------------------------------------------- /votemapper/housevotetracker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/housevotetracker.R -------------------------------------------------------------------------------- /votemapper/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/readme.md -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.cpg: -------------------------------------------------------------------------------- 1 | utf-8 -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senatemap/sorted.dbf -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senatemap/sorted.prj -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senatemap/sorted.qpj -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senatemap/sorted.shp -------------------------------------------------------------------------------- /votemapper/senatemap/sorted.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senatemap/sorted.shx -------------------------------------------------------------------------------- /votemapper/senvotetracker.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioneerpress/code/HEAD/votemapper/senvotetracker.R --------------------------------------------------------------------------------