This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a58c947
commit 5a00e34
Showing
4 changed files
with
61 additions
and
76 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,39 @@ | ||
PollHistoryLimit: 3 | ||
TossupThreshold: 3.01 | ||
ECVAlgorithm: 2 | ||
ECVAlgorithm: 3 | ||
PlotHeight: 10.0 | ||
PlotWidth: 10.0 | ||
|
||
# PollHistoryLimit: Poll History Limit (integer) | ||
# Only look back this many polls or less. | ||
|
||
# TossupThreshold: Tossup Threshold (float64) | ||
# If the percentage difference is less than this threshold, its a tossup. | ||
PollHistoryLimit: 3 | ||
TossupThreshold: 3.01 | ||
|
||
# ECVAlgorithm: Electoral College Vote Allocation Algorithm (integer) | ||
|
||
# 1 | ||
# Other percentage = 100% - (sum percentages of the candidates). | ||
# Difference = absolute value of the difference between candidates. | ||
|
||
# 1 - Split the Other Proportionately. | ||
# | ||
# Split the "Other" percentage proportionally amongst the candidates. Then, | ||
# Which candidate has a higher poll percentage? | ||
# If the difference between candidates is below the tossup threshold, | ||
# it's a tossup. | ||
# Split the "Other" percentage proportionally amongst the candidates. | ||
# If the difference between candidates is below the tossup threshold, it's a tossup. | ||
|
||
# 2 | ||
# 2 - Compare the difference to the tossup threshold. | ||
# | ||
# Which candidate has a higher poll percentage? | ||
# If the difference between candidates is below the tossup threshold, | ||
# it's a tossup. | ||
# Might the "Other" percentage make a difference in the future? | ||
# If so, indicate that in the output. | ||
# If the difference between candidates is below the tossup threshold, it's a tossup. | ||
# If the "Other" percentage exceeds the difference, indicate that in the other factor output. | ||
|
||
|
||
# 3 | ||
# 3 - Like #2 except "other" plays a roll in determining tossup status. | ||
# | ||
# Which candidate has a higher poll percentage? | ||
# If the other percentage exceeds the difference between Biden and Trump, | ||
# * Indicate that in the other factor output. | ||
# * It's a tossup. | ||
# If the difference between candidates is below the tossup threshold, | ||
# it's a tossup. | ||
# If the "Other" percentage would make a difference in the future, | ||
# it's a tossup. | ||
|
||
# Plot height and width (float64) | ||
# These are the height and width respectively, measured in the quantity of postscript points (dots) | ||
|
||
# PollHistoryLimit: Poll History Limit (integer) | ||
# Only look back this many polls or less. | ||
|
||
# TossupThreshold: Tossup Threshold (float64) | ||
# If the percentage difference is less than this threshold, its a tossup. | ||
|
This file contains 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
This file contains 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
This file contains 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