Skip to content

Commit 8060660

Browse files
committed
feedback fixes
1 parent 51ac43d commit 8060660

File tree

2 files changed

+0
-36
lines changed

2 files changed

+0
-36
lines changed

ema_workbench/analysis/regional_sa.py

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,6 @@ def plot_discrete_cdf(ax, unc, x, y, xticklabels_on, ccdf):
8383
y_plot = [freq] * 2
8484

8585
ax.plot(x_plot, y_plot, c=cp[i + 1], label=i == 1, marker="o")
86-
# ax.scatter(
87-
# x_plot[0],
88-
# y_plot[0],
89-
# edgecolors=cp[i + 1],
90-
# facecolors=cp[i + 1],
91-
# linewidths=1,
92-
# zorder=2,
93-
# )
94-
# ax.scatter(
95-
# x_plot[1],
96-
# y_plot[0],
97-
# edgecolors=cp[i + 1],
98-
# facecolors="white",
99-
# linewidths=1,
100-
# zorder=2,
101-
# )
10286

10387
# misnomer
10488
cum_freq_un = (j + 1) / n_cat
@@ -108,22 +92,6 @@ def plot_discrete_cdf(ax, unc, x, y, xticklabels_on, ccdf):
10892
ax.plot(
10993
x_plot, [cum_freq_un] * 2, lw=1, c="darkgrey", zorder=1, label="x==y", marker="o"
11094
)
111-
# ax.scatter(
112-
# x_plot[0],
113-
# cum_freq_un,
114-
# edgecolors="darkgrey",
115-
# facecolors="darkgrey",
116-
# linewidths=1,
117-
# zorder=1,
118-
# )
119-
# ax.scatter(
120-
# x_plot[1],
121-
# cum_freq_un,
122-
# edgecolors="darkgrey",
123-
# facecolors="white",
124-
# linewidths=1,
125-
# zorder=1,
126-
# )
12795

12896
ax.set_xticklabels([])
12997
if xticklabels_on:

ema_workbench/examples/regional_sa_flu.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,5 @@
1414
y = outcomes["deceased population region 1"][:, -1] > 1000000
1515

1616
fig = regional_sa.plot_cdfs(x, y)
17-
# regional_sa.plot_cdfs(x, y, ccdf=True)
18-
19-
# regional_sa.plot_cdfs(x, y, ccdf=True)
20-
2117

2218
plt.show()

0 commit comments

Comments
 (0)