You MUST work within your assigned teams.
Each team will create/record a short video presentation (at most 7 minutes) of their findings. Feel free to get creative; fun animations are welcome!
Each team MUST turn in only one report with team members’ names at the top of the report, and the different designations (checker, coordinator, presenter, programmer, and writer).
.pdf
.kable
, xtable
, stargazer
, etc.All team members must complete a very short written evaluation, quickly describing the effort put forth by other team members.
The North Carolina State Board of Elections (NCSBE) is the agency charged with the administration of the elections process and campaign finance disclosure and compliance. Among other things, they provide voter registration and turnout data online (https://www.ncsbe.gov/index.html, https://www.ncsbe.gov/results-data). Using the NC voter files for the general elections in November 2020, you will attempt to identify/estimate how different groups voted in the 2020 elections, at least out of those who registered. Here’s an interesting read on turnout rates for NC in 2016: https://democracync.org/wp-content/uploads/2017/05/WhoVoted2016.pdf (you might consider creating a similar graphic to the one on page 4).
The data for this part of the project can be found on Sakai. The file voter_stats_20201103.txt
contains information about the aggregate counts of registered voters by the demographic variables; the data dictionary can be found in the file DataDictionaryForVoterStats.txt
. The file history_stats_20201103.txt
contains information about the aggregate counts of voters who actually voted by the demographic variables.
You will only work with a subset of thoe overall data. Take a random sample of 30 counties out of all the counties in both datasets. You should indicate the counties you sampled in your final report. You will need to merge the two files voter_stats_20201103.txt
and history_stats_20201103.txt
by the common variables for the counties you care about. Take a look at the set of join
functions in the dplyr
package in R (https://www.rdocumentation.org/packages/dplyr/versions/0.7.8/topics/join) or the merge
function in base R. I recommend the functions in dplyr
. You may choose to merge the datasets before or after selecting the samples you want, but be careful if you decide to do the latter.
Unfortunately, the data dictionary from the NCSBE does not provide the exact difference between the variables party_cd
and voted_party_cd
in the history_stats_20201103.txt
file (if you are able to find documentation on the difference, do let me know). However, I suspect that the voted party code encodes the information about people who changed their party affiliation as at the registration deadline, whereas the first party code is everyone’s original affiliation. Voters are allowed to change their party affiliation in NC so that lines up. The two variables are thus very similar and only a small percentage of the rows in the history_stats_20201103.txt
file have different values for the two variables. I would suggest using the voted party code (voted_party_cd
) for the history_stats_20201103.txt
dataset.
You should discard the following variables before merging: election_date
,stats_type
, and update_date
. Also, you can not really merge by or use the voting_method
and voting_method_desc
variables in your analysis either because that information is only available in the history_stats_20201103.txt
data and not the other dataset. That means you should not use those two variables when merging.
Before discarding the variables however, you need to aggregate to make sure that you are merging correctly. As a simple example, suppose 4 males voted in person and 3 males voted by mail, you need to aggregate out the method of voting so that you have 7 males in total. This is because we are unable to separate people who voted by different voting methods in the voter_stats_20201103.txt
we want to merge from. So, the simplest way is to use the aggregate function in R. As an example, the code:
aggregated_data <- aggregate(Data$total_voters,
list(Age=Data$age,Party=Data$party_cd),sum)
will sum all voters by all age groups and party. You can also use the dplyr
package to aggregate in the same way if you prefer that.
Once you have this clean data for the history_stats_20201103.txt
file, you should then go ahead to grab the information on total registered voters from voter_stats_20201103.txt
, by merging by all variables in history_stats_20201103.txt
, except total_voters
.
Your job is to use a Bayesian hierarchical model to answer the following questions of interest.
Be sure to include the following in your report:
Finally, your analysis MUST address the questions of interest directly.
100 points.