Update phase/interpret.py
Browse filesmodified threshold magnitude of PCR, PEG
- phase/interpret.py +4 -4
phase/interpret.py
CHANGED
|
@@ -3,8 +3,8 @@ def assign_typology(components):
|
|
| 3 |
# define state rules for every components
|
| 4 |
STATE_RULES = {
|
| 5 |
"PCR (Participation Coverage Ratio)": [
|
| 6 |
-
(
|
| 7 |
-
(
|
| 8 |
(0.0, "High Alert")
|
| 9 |
],
|
| 10 |
"SPI-A (Silent Participation Inference - Silent Non-Adoption)": [
|
|
@@ -18,8 +18,8 @@ def assign_typology(components):
|
|
| 18 |
(0.0, "Low Alert")
|
| 19 |
],
|
| 20 |
"PEG (Participation-to-Expression Gap)": [
|
| 21 |
-
(
|
| 22 |
-
(
|
| 23 |
(0.0, "Low Alert")
|
| 24 |
]
|
| 25 |
}
|
|
|
|
| 3 |
# define state rules for every components
|
| 4 |
STATE_RULES = {
|
| 5 |
"PCR (Participation Coverage Ratio)": [
|
| 6 |
+
(60.0, "Low Alert"),
|
| 7 |
+
(20.0, "Medium Alert"),
|
| 8 |
(0.0, "High Alert")
|
| 9 |
],
|
| 10 |
"SPI-A (Silent Participation Inference - Silent Non-Adoption)": [
|
|
|
|
| 18 |
(0.0, "Low Alert")
|
| 19 |
],
|
| 20 |
"PEG (Participation-to-Expression Gap)": [
|
| 21 |
+
(60.0, "High Alert"),
|
| 22 |
+
(30.0, "Medium Alert"),
|
| 23 |
(0.0, "Low Alert")
|
| 24 |
]
|
| 25 |
}
|