I'm building electoral maps from mayoral races in ArcGIS over the last 3 election cycles, trying to see if a particular part of town votes like the rest of the town.
There are multiple candidates for mayor and an example table looks like this:
PRECINCT_NUMBER TOTAL_BALLOTSCAST CANDIDATE1 CANDIDATE2 CANDIDATE3
500 1000 500 300 200
501 2000 800 700 500
502 1000 400 500 100
I can show how a specific candidate did by precinct by calcuating candidatex / total_ballotcast
to give percentages for each precinct, and display the precincts by category of percentage by candidate.
However, I am also trying to show who was the biggest winner in each precinct by percentage and I am not sure how to query the data to reflect this.