This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# function written by HuffPost Pollster's Natalie Jackson for the 2016 election | |
# ibraries and import -------- | |
library(dplyr) | |
library('Matrix') | |
seat_data <- read.csv("seat_partisanship_demog.csv") # read in a 435 | |
seat_data <- seat_data %>% | |
select(clinton2016, obama2012, house2016, pct_nonwhite) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Libraries, data, setup #### | |
rm(list=ls()) | |
library(tidyverse) | |
library(gridExtra) | |
library(googlesheets) | |
source("~/Desktop/theme_elliott.R") | |
# load in data from Gsheet | |
my_sheets <- gs_ls() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## R Code for analysing AHCA CBO outlook and congress data | |
## Written by G. Elliott Morris | |
## @gelliottmorris | [email protected] | TheCrosstab.com | |
## please do not replicate the analysis without permission. | |
## | |
## Additional info: | |
## DOWNLOAD DATA AT http://bit.ly/2oa0RPa | |
## Github Gist lives at: http://bit.ly/2nI5bZu | |
# libraries #### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## R Code for Analysing the 2016 Cooperative Congressional Election Study | |
## Written by G. Elliott Morris | |
## @gelliottmorris | [email protected] | TheCrosstab.com | |
## please do not replicate the analysis without permission. | |
## | |
## Additional info: | |
## DOWNLOAD DATA AT https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/GDF6Z0 | |
## Github Gist lives at: https://gist.github.com/elliottmorris/79141ff0f0c3824798ce3b84f18b817b | |
### libraries & functions #### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################## | |
# Code for house-correcting Trump approval polls | |
# Written by Alexander Agadjanian and G. Elliott Morris | |
# for use on Elliott's blog, TheCrosstab.com. | |
# @a_agadjanian @GElliottMorris | |
# | |
# Github Gist lives at https://gist.github.com/elliottmorris/905bd514110ea7d0b599cfca8a8e7332 | |
#################################### | |
# libraries #### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################### | |
# exploring the 538 package | |
# code by G. Elliott Morris, @gelliottmorris | |
################################### | |
#install pacakges | |
install.packages(c("fivethirtyeight","ggplot2","dplyr","ggthemes")) | |
#load them | |
library(fivethirtyeight) |
NewerOlder