129
Comments (3)
sorted by:
3
bucky_the_wonder_pig [S] 3 points ago +3 / -0

This is simply a repost from 4chan /vfg/

HELP SPREAD INFORMATION.

Reposting again so the downballot deviations in MI don't get memoryholed:

I keep trying to get attention to this but threads are moving fast and getting pruned. I did an analysis of the downbalot deviaitons in MI.

DOWNBALLOT DEVIATIONS POSITIVE FOR BIDEN, INDICATING BALLTOTS SUBMITTED WHICH VOTED FOR BIDEN AS PRES WITH NO DEM SENATOR.

DOWNBALLOT DEVIATIONS FOR TRUMP OVERWHELMINGY NEGATIVE, INDICATING THAT MANY STRAIGHT REPUBLICAN BALLOTS WERE SWITCHED TO VOTE FOR BIDEN - BUT LOW IQ USEFUL IDIOTS FORGOT TO SWITCH THE SENATOR VOTES.

I USED DATA FROM A DIFFERENT ANONS POST, HERE IS HIS DATA DUMP:

RAW DATA:

Michigan Election Results by county

I have created a python program that reads a CSV file of the election results in MI as well as a CSV of the number of registered voters per county. It makes researching the numbers much easier. If you are a programmer, you can use it as a starting point for some statistical analysis.

Right now if you put in a county, it will return: Trump votes Biden Votes Dem Congress Votes Rep Congress Votes Trump Percentage Biden Percentage Dem congress percent Rep congress percent Differences between congress votes and president votes (DEMDifference and REPDifference) Total votes (president) Total congress votes Registered voter count Turnout (percent)

I have only looked at a couple counties but this could help find inconsistencies in the numbers.

It requires 2 CSV files which are linked at the top of the code.

https://pastebin.com/MQb4u294

Bonus: csv from the 4th around 11:00PM EST https://gofile.io/d/az8xYn

1
TheyDontWantMe2020 1 point ago +1 / -0

Can you post the PBIX file with the data loaded?

1
bucky_the_wonder_pig [S] 1 point ago +1 / -0

Here's the archive of the thread: https://archive.4plebs.org/pol/thread/288284101/#288288215

From the original anon who posted this, perhaps this will help.

Calculations here: https://pastebin.com/F65ivLYg

FOR DATA INTEGRITY PURPOSED IF ANYONE WANTS TO VERIFY RESULTS AGAINST THE RAW DATA: COLUMN OPERATIONS

Democrat downballot difference = voters[Votes Counted for Biden (President)]-voters[Votes Counted for Dem Senator]

Difference between presidential votes & voters = voters[Voters]-voters[Votes Counted for President]

Difference between Senator votes & voters = voters[Voters]-voters[Votes Counted for Senator]

Election turnout for Presidential Votes = voters[Votes Counted for President]/voters[Voters]

Election turnout for Senator Votes = voters[Votes Counted for Senator]/voters[Voters]

Republican downballot difference = voters[Votes Counted for Trump (President)]-voters[Votes Counted for Rep Senator]

Total % difference in Election turnout between Senator & President = voters[Election turnout for Presidential Votes]-voters[Election turnout for Senator Votes]

Votes Counted for Biden (President) = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="President of the United States 4 Year Term (1) Position"), filter(MI_results, MI_results[PartyName]="DEM"))

Votes Counted for Dem Senator = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="United States Senator 6 Year Term (1) Position"), filter(MI_results, MI_results[PartyName]="DEM"))

Votes Counted for President = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="President of the United States 4 Year Term (1) Position"))

Votes Counted for Rep Senator = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="United States Senator 6 Year Term (1) Position"), filter(MI_results, MI_results[PartyName]="Rep"))

Votes Counted for Senator = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="United States Senator 6 Year Term (1) Position"))

Votes Counted for Trump (President) = calculate(SUM( MI_results[CandidateVotes]), filter(MI_results,MI_results[CountyName]=voters[CountyName]), filter(MI_results, MI_results[OfficeDescription]="President of the United States 4 Year Term (1) Position"), filter(MI_results, MI_results[PartyName]="REP"))

MEASURE OPERATIONS

Democrat Downballot difference aggregate = sum(voters[Democrat downballot difference])

Republican Downballot difference aggregate = sum(voters[Republican downballot difference])