Update data_processor.py
Browse files- data_processor.py +1 -1
data_processor.py
CHANGED
|
@@ -73,7 +73,7 @@ class DataProcessor:
|
|
| 73 |
intervention_frequency = (sessions_held / total_days) * 100 if total_days > 0 else 0
|
| 74 |
intervention_frequency = round(intervention_frequency, 0)
|
| 75 |
|
| 76 |
-
|
| 77 |
'Intervention Frequency (%)': [intervention_frequency],
|
| 78 |
'Intervention Sessions Held': [sessions_held],
|
| 79 |
'Intervention Sessions Not Held': [sessions_not_held],
|
|
|
|
| 73 |
intervention_frequency = (sessions_held / total_days) * 100 if total_days > 0 else 0
|
| 74 |
intervention_frequency = round(intervention_frequency, 0)
|
| 75 |
|
| 76 |
+
stats = {
|
| 77 |
'Intervention Frequency (%)': [intervention_frequency],
|
| 78 |
'Intervention Sessions Held': [sessions_held],
|
| 79 |
'Intervention Sessions Not Held': [sessions_not_held],
|