Created
September 1, 2025 18:57
-
-
Save carlislerainey/fda3b4eb7e95d50949a445d9ae7f02c8 to your computer and use it in GitHub Desktop.
Data from https://election.lab.ufl.edu/2024-general-election-turnout/ as a tibble.
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
| # https://election.lab.ufl.edu/2024-general-election-turnout/ | |
| library(tibble) | |
| turnout_2024 <- tribble( | |
| ~state, ~vep_turnout, | |
| "Alabama", 0.5893, | |
| "Alaska", 0.6378, | |
| "Arizona", 0.6360, | |
| "Arkansas", 0.5348, | |
| "California", 0.6206, | |
| "Colorado", 0.7314, | |
| "Connecticut", 0.6708, | |
| "Delaware", 0.6702, | |
| "District of Columbia", 0.6357, | |
| "Florida", 0.6671, | |
| "Georgia", 0.6826, | |
| "Hawaii", 0.5027, | |
| "Idaho", 0.6344, | |
| "Illinois", 0.6325, | |
| "Indiana", 0.5869, | |
| "Iowa", 0.7078, | |
| "Kansas", 0.6318, | |
| "Kentucky", 0.6219, | |
| "Louisiana", 0.6077, | |
| "Maine", 0.7424, | |
| "Maryland", 0.6930, | |
| "Massachusetts", 0.6803, | |
| "Michigan", 0.7464, | |
| "Minnesota", 0.7635, | |
| "Mississippi", 0.5745, | |
| "Missouri", 0.6434, | |
| "Montana", 0.6820, | |
| "Nebraska", 0.6796, | |
| "Nevada", 0.6580, | |
| "New Hampshire", 0.7405, | |
| "New Jersey", 0.6724, | |
| "New Mexico", 0.5957, | |
| "New York", 0.6044, | |
| "North Carolina", 0.7032, | |
| "North Dakota", 0.6310, | |
| "Ohio", 0.6539, | |
| "Oklahoma", 0.5328, | |
| "Oregon", 0.7194, | |
| "Pennsylvania", 0.7143, | |
| "Rhode Island", 0.6328, | |
| "South Carolina", 0.6214, | |
| "South Dakota", 0.6400, | |
| "Tennessee", 0.5761, | |
| "Texas", 0.5657, | |
| "Utah", 0.6415, | |
| "Vermont", 0.7089, | |
| "Virginia", 0.7119, | |
| "Washington", 0.7017, | |
| "West Virginia", 0.5546, | |
| "Wisconsin", 0.7664, | |
| "Wyoming", 0.6128 | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment