-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunningachain_50pc.py
181 lines (150 loc) · 6.1 KB
/
runningachain_50pc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Mar 24 16:55:12 2020
uses recom proposal
@author: dpg
"""
import matplotlib.pyplot as plt
import backup_chain as bc
from gerrychain import (GeographicPartition, Partition, Graph, MarkovChain,
proposals, updaters, constraints, accept, Election)
from gerrychain.proposals import (recom, propose_random_flip)
from gerrychain.constraints import single_flip_contiguous
from functools import partial
import pandas
from gerrychain.metrics import mean_median, efficiency_gap
from strcmp_matlab import strfilter
import time
from norm_50 import norm_data
from get_districtlabels import get_labels
from get_electioninfo import get_elections
from gerrychain.tree import recursive_tree_part
#SET CONSTANTS HERE:
#dontfeedin = 1 #if set=0, feeds in data, otherwise skip
exec(open("input_templates/WI_SEN_SEN16.py").read())
markovchainlength = 1000 #length of Markov chain
proposaltype = "recom"
poptol = 0.02
elections = get_elections(state)
if 'dontfeedin' in globals():
if dontfeedin == 0 or not( 'graph_PA' in globals()):
if ".json" in my_electiondatafile:
graph_PA = Graph.from_json(my_electiondatafile)
else:
graph_PA = Graph.from_file(my_electiondatafile)
else:
print("reading in data:\n")
if ".json" in my_electiondatafile:
graph_PA = Graph.from_json(my_electiondatafile)
else:
graph_PA = Graph.from_file(my_electiondatafile)
t0=time.time()
if "TOTPOP" in graph_PA._node[0]:
popkey = "TOTPOP"
elif "PERSONS" in graph_PA._node[0]:
popkey = "PERSONS"
else:
popkey = []
print("woops no popkey in file, look @ graph_PA._node[0] to figure out what the keyword for population is\n")
#CONFIGURE UPDATERS
#We want to set up updaters for everything we want to compute for each plan in the ensemble.
# Population updater, for computing how close to equality the district
# populations are. "TOTPOP" is the population column from our shapefile.
my_updaters = {"population": updaters.Tally(popkey, alias="population")}
# Election updaters, for computing election results using the vote totals
# from our shapefile.
election_updaters = {election.name: election for election in elections}
my_updaters.update(election_updaters)
#INITIAL PARTITION
#cds = get_labels(initial_partition, my_electionproxy) #get congressional district labels
initial_partition = GeographicPartition(graph_PA, assignment=my_apportionment, updaters=my_updaters)
#SETUP MARKOV CHAIN PROPOSAL W RECOM
# The ReCom proposal needs to know the ideal population for the districts so that
# we can improve speed by bailing early on unbalanced partitions.
#ideal_population = sum(initial_partition["population"].values()) / len(initial_partition)
ideal_population = sum(list(initial_partition["population"].values())) / len(initial_partition)
# We use functools.partial to bind the extra parameters (pop_col, pop_target, epsilon, node_repeats)
# of the recom proposal.
proposal = partial(recom,
pop_col=popkey,
pop_target=ideal_population,
epsilon=poptol,
node_repeats=2
)
#CONSTRAINTS
compactness_bound = constraints.UpperBound(
lambda p: len(p["cut_edges"]),
2*len(initial_partition["cut_edges"])
)
pop_constraint = constraints.within_percent_of_ideal_population(initial_partition, poptol)
nparts = len(initial_partition)
ranpart = recursive_tree_part(graph_PA, range(nparts), ideal_population, popkey,poptol-.01,node_repeats=1)
randpartition = GeographicPartition(graph_PA,assignment = ranpart, updaters = my_updaters)
exec(open("partition_clean.py").read())
chain = MarkovChain(
proposal=proposal,
constraints=[
pop_constraint,
compactness_bound
],
accept=accept.always_accept,
initial_state=initial_partition,
total_steps=2
)
data = pandas.DataFrame(
sorted(partition[my_electionproxy].percents("Democratic"))
for partition in chain
)
t0=time.time()
#now can do initial_partition and know my_electionproxy will be OK, won't need alternate
initial_partition, graph_PA, my_updaters = norm_data(graph_PA, my_updaters, my_apportionment, my_electionproxy, my_electionproxy_alternate, state)
cds = get_labels(initial_partition, my_electionproxy) #get congressional district labels
#CONFIGURE MARKOV CHAIN
chain = MarkovChain(
proposal=proposal,
constraints=[
pop_constraint,
compactness_bound
],
accept=accept.always_accept,
initial_state=initial_partition,
total_steps=markovchainlength
)
# This will take about 10 minutes.
# This will take about 10 minutes.
rsw = []
rmm = []
reg = []
data1 = pandas.DataFrame(sorted(initial_partition[my_electionproxy].percents("Democratic") ), index = cds)
data1=data1.transpose()
#data1.columns = congressdistrictlabels
#data1 = data1.transpose()
#data1 = pandas.DataFrame((initial_partition[my_electionproxy].percents("Democratic") ))
for part in chain:
rsw.append(part[my_electionproxy].wins("Democratic"))
rmm.append(mean_median(part[my_electionproxy]))
reg.append(efficiency_gap(part[my_electionproxy]))
datax = pandas.DataFrame(sorted(part[my_electionproxy].percents("Democratic" )), index=cds)
datax = datax.transpose()
# data1 = pandas.concat([data1, pandas.DataFrame(part[my_electionproxy].percents("Democratic" ))],axis=1)
data1 = pandas.concat([data1, datax])
fig, ax = plt.subplots(figsize=(8, 6))
# Draw 50% line
ax.axhline(0.5, color="#cccccc")
# Draw boxplot
data1.boxplot(ax=ax, positions=range(len(data1.columns)))
# Draw initial plan's Democratic vote %s (.iloc[0] gives the first row)
plt.plot(data1.iloc[0], "ro")
# Annotate
titlestr = state + " " + my_apportionment + " x" + str(markovchainlength) + " normalized"
ax.set_title(titlestr)
ax.set_ylabel("Democratic vote % " + my_electionproxy)
ax.set_xlabel("Sorted districts")
ax.set_ylim(0, 1)
ax.set_yticks([0, 0.25, 0.5, 0.75, 1])
plt.show()
# NORMALIZE AND REDO at 50% per each party
t1=time.time()
outname = "redist_data/" + state + "_" + my_apportionment + "_" + my_electionproxy + "x" + str(markovchainlength)
bc.save(outname,data1, reg, rmm, rsw)