-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Juab 2018 precinct file sums to the following:
> library(readr)
>
> ti <- read_csv("~/openelections/openelections-data-ut/2018/20181106__ut__general__juab__precinct.csv")
Parsed with column specification:
cols(
candidate = col_character(),
office = col_character(),
district = col_integer(),
party = col_character(),
county = col_character(),
precinct = col_character(),
votes = col_integer(),
winner = col_character()
)
>
> sum(ti$votes[ti$candidate %in% "Mitt Romney"])
[1] 3206
>
> sum(ti$votes[ti$candidate %in% "Jenny Wilson"])
[1] 484
>
> sum(ti$votes[ti$candidate %in% "Straight Party"])
[1] 0
These, however, do not match the official canvass of results from the state found here: https://elections.utah.gov/Media/Default/2018%20Election/2018%20General%20Election%20Canvass.pdf
As the Juab county file is not in openelections/openelections-sources-ut, I cannot diagnose the source of the error
todrobbins
Metadata
Metadata
Assignees
Labels
No labels