Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 2.64 KB

README.md

File metadata and controls

59 lines (39 loc) · 2.64 KB

Election_Analysis

Project Overview

A Colorado Board of Elections employee assigned the following tasks to complete the election audit of a recent local congressional election.

  1. Calculate the total number of votes cast.
  2. Get a complete list of candidates who received votes.
  3. Calculate the total number of votes for each candidate received.
  4. Calculate the percentage of votes each candidate won.
  5. Determine the winner of the election based on popular vote.
  6. Calculate the voter turnout for each county.
  7. Calculate the percentage of votes from each county out of the total.
  8. Determine the county with the highest turnout.

Resources

Data Source: election_results.csv Software: Python 3.7.6, Visual Studio Code 1.66.0

Summary

The analysis of the election shows that:

  • There were 369,711 votes cast in the election.
  • The candidates were:

    Charles Casper Stockham Diana DeGette Raymon Anthony Doane

  • The candidate results were:

    Charles Casper Stockham received 23.0% of the vote, for a total of 85,213 votes. Diana DeGette received 73.8% of the vote, for a total of 272,892 votes. Raymon Anthony Doane received 3.1% of the vote, for a total of 11,606 votes.

  • The winner of the election was:

    Diana DeGette, who received 73.8% of the vote for a total of 272,892 votes.

  • The voter turnout for each county was:

    Jefferson produced 10.5% of voters, for a total of 38,855 voters. Denver produced 82.8% of voters, for a total of 306,055 voters. Arapahoe produced 6.7% of voters, for a total of 24,801 voters.

  • The county with the largest voter turnout was:

    Denver, which produced 82.8% of voters, for a total of 306,055 voters.

result

Election-Audit Summary

  • Expanding the Election Audit to include voter turnout by county with candidates results has been a great way to take advantage of the convenience a script provides.

  • The added insight can be a guide for future election performance, so that you may properly allocate resources where turnout is low or demographics are hard to reach.

  • A little time invested into customizing the script can provide on-demand analysis for years to come.

  • Modifying the script to produce turnout results by county is just one of many ways that minor adjustments to the code can reveal critical data. For example, we could also dive deeper and determine what percentage of each county voted for each candidate by adding an if-statement to the code. These type of Decision Statements are how the code runs calculations and all we've done is provide it with a data file.