We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
@npelikan thanks for the report. The precinct results from Juab are in the sources repo here, and we've asked the Juab clerk about the discrepancy.
Sorry, something went wrong.
No branches or pull requests
Juab 2018 precinct file sums to the following:
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
The text was updated successfully, but these errors were encountered: