├── .gitignore ├── README.md ├── data ├── 2019_01_11_cnn_poll.csv ├── 2019_02_08_how_liberal_2020_dems.csv ├── 2019_02_15_2020_twitter_primary.RData ├── 2019_03_01_2018_vs_partisanship.csv ├── 2019_03_15_beto_media_data.RData ├── 2019_03_29_2020_media_gender_bias.RData ├── 2019_04_05_how_young_2020_democrats.csv └── 2019_04_12_mayor_pete_hype.csv └── scripts ├── 2019_01_04_polarization_in_congress.R ├── 2019_01_11_cnn_poll.R ├── 2019_01_18_how_marginal_tax_rates_work.R ├── 2019_01_25_counterintuitive_no_votes.R ├── 2019_02_01_distribution_of_voters.R ├── 2019_02_08_how_liberal_2020_dems.R ├── 2019_02_15_2020_twitter_primary.R ├── 2019_02_22_four_parties.R ├── 2019_03_01_2018_vs_partisanship.R ├── 2019_03_08_electoral_college_proportional.R ├── 2019_03_15_media_beto.R ├── 2019_03_22_economic_voting.R ├── 2019_03_29_gender_media_bias.R ├── 2019_04_05_how_young_2020_democrats.R ├── 2019_04_12_mayor_pete_hype.R ├── 2019_04_19_gop_loyal_trump.R └── 2019_05_03_yang_gang.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/README.md -------------------------------------------------------------------------------- /data/2019_01_11_cnn_poll.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_01_11_cnn_poll.csv -------------------------------------------------------------------------------- /data/2019_02_08_how_liberal_2020_dems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_02_08_how_liberal_2020_dems.csv -------------------------------------------------------------------------------- /data/2019_02_15_2020_twitter_primary.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_02_15_2020_twitter_primary.RData -------------------------------------------------------------------------------- /data/2019_03_01_2018_vs_partisanship.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_03_01_2018_vs_partisanship.csv -------------------------------------------------------------------------------- /data/2019_03_15_beto_media_data.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_03_15_beto_media_data.RData -------------------------------------------------------------------------------- /data/2019_03_29_2020_media_gender_bias.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_03_29_2020_media_gender_bias.RData -------------------------------------------------------------------------------- /data/2019_04_05_how_young_2020_democrats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_04_05_how_young_2020_democrats.csv -------------------------------------------------------------------------------- /data/2019_04_12_mayor_pete_hype.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/data/2019_04_12_mayor_pete_hype.csv -------------------------------------------------------------------------------- /scripts/2019_01_04_polarization_in_congress.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_01_04_polarization_in_congress.R -------------------------------------------------------------------------------- /scripts/2019_01_11_cnn_poll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_01_11_cnn_poll.R -------------------------------------------------------------------------------- /scripts/2019_01_18_how_marginal_tax_rates_work.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_01_18_how_marginal_tax_rates_work.R -------------------------------------------------------------------------------- /scripts/2019_01_25_counterintuitive_no_votes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_01_25_counterintuitive_no_votes.R -------------------------------------------------------------------------------- /scripts/2019_02_01_distribution_of_voters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_02_01_distribution_of_voters.R -------------------------------------------------------------------------------- /scripts/2019_02_08_how_liberal_2020_dems.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_02_08_how_liberal_2020_dems.R -------------------------------------------------------------------------------- /scripts/2019_02_15_2020_twitter_primary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_02_15_2020_twitter_primary.R -------------------------------------------------------------------------------- /scripts/2019_02_22_four_parties.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_02_22_four_parties.R -------------------------------------------------------------------------------- /scripts/2019_03_01_2018_vs_partisanship.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_03_01_2018_vs_partisanship.R -------------------------------------------------------------------------------- /scripts/2019_03_08_electoral_college_proportional.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_03_08_electoral_college_proportional.R -------------------------------------------------------------------------------- /scripts/2019_03_15_media_beto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_03_15_media_beto.R -------------------------------------------------------------------------------- /scripts/2019_03_22_economic_voting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_03_22_economic_voting.R -------------------------------------------------------------------------------- /scripts/2019_03_29_gender_media_bias.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_03_29_gender_media_bias.R -------------------------------------------------------------------------------- /scripts/2019_04_05_how_young_2020_democrats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_04_05_how_young_2020_democrats.R -------------------------------------------------------------------------------- /scripts/2019_04_12_mayor_pete_hype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_04_12_mayor_pete_hype.R -------------------------------------------------------------------------------- /scripts/2019_04_19_gop_loyal_trump.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_04_19_gop_loyal_trump.R -------------------------------------------------------------------------------- /scripts/2019_05_03_yang_gang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliottmorris/R-for-political-data/HEAD/scripts/2019_05_03_yang_gang.R --------------------------------------------------------------------------------