forked from quaquel/EMAworkbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsd_prim_PCA_flu.py
37 lines (24 loc) · 902 Bytes
/
sd_prim_PCA_flu.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
"""
This file illustrated the use of the workbench for doing
a PRIM analysis with PCA preprocessing
The data was generated using a system dynamics models implemented in Vensim.
See flu_example.py for the code.
"""
import matplotlib.pyplot as plt
import ema_workbench.analysis.prim as prim
from ema_workbench import ema_logging, load_results
#
# .. codeauthor:: jhkwakkel <j.h.kwakkel (at) tudelft (dot) nl>
ema_logging.log_to_stderr(level=ema_logging.INFO)
# load data
fn = r"./data/1000 flu cases no policy.tar.gz"
x, outcomes = load_results(fn)
# specify y
y = outcomes["deceased_population_region_1"][:, -1] > 1000000
rotated_experiments, rotation_matrix = prim.pca_preprocess(x, y, exclude=["model", "policy"])
# perform prim on modified results tuple
prim_obj = prim.Prim(rotated_experiments, y, threshold=0.8)
box = prim_obj.find_box()
box.show_tradeoff()
box.inspect(22)
plt.show()