-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpi3.php
217 lines (195 loc) · 4.9 KB
/
kpi3.php
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
$satisfactionTarget = 8; // Change this to the target satisfaction score for KPI3a
?>
<?php
include 'dbconfig.php';
// Create connection
$conn = new mysqli($dbservername, $dbusername, $dbpassword, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Call the stored procedure
$sql = "CALL GetPatientSatisfactionScores()";
$result = $conn->query($sql);
$patientIDs = array();
$satisfactionScores = array();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$patientIDs[] = $row['id'];
$satisfactionScores[] = $row['satisfaction_score'];
}
} else {
echo "No data available.";
}
$conn->close();
$jsonPatientIDs = json_encode($patientIDs);
$jsonSatisfactionScores = json_encode($satisfactionScores);
?>
<div class="col-md-6 my-1">
<div class="card">
<div class="card-body text-center">
<strong>
KPI3a: <u>Patient Satisfaction Scores related to Personalized Risk Assessments and Preventive Recommendations</u><br>
Target: <?= $satisfactionTarget ?> or above
</strong>
</div>
<div class="card-body">
<canvas id="KPI3a"></canvas>
</div>
</div>
</div>
<script>
const kpi3a = document.getElementById('KPI3a');
new Chart(kpi3a, {
type: 'radar',
data: {
labels: <?= $jsonPatientIDs ?>,
datasets: [
{
label: 'Satisfaction Score',
data: <?= $jsonSatisfactionScores ?>,
backgroundColor: 'rgba(54, 162, 235, 0.4)',
borderColor: 'rgba(54, 162, 235, 1)',
pointBackgroundColor: 'rgba(54, 162, 235, 1)',
pointBorderColor: '#fff',
pointRadius: 4,
pointHoverRadius: 5
}
]
},
options: {
scales: {
r: {
beginAtZero: true,
title: {
display: true,
text: 'Satisfaction Score'
},
angleLines: {
display: false
},
grid: {
circular: true
},
pointLabels: {
display: true
}
}
},
plugins: {
legend: {
display: false
},
tooltip: {
intersect: false
}
}
}
});
</script>
<?php
$interventionTarget = 100; // Change this to the target number of successful interventions or treatments for KPI3b
?>
<?php
include 'dbconfig.php';
// Create connection
$conn = new mysqli($dbservername, $dbusername, $dbpassword, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Call the stored procedure
$sql = "CALL GetSuccessfulInterventions($interventionTarget)";
$result = $conn->query($sql);
$quarters = array();
$interventionCounts = array();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$quarters[] = $row['quarter'];
$interventionCounts[] = $row['intervention_count'];
}
} else {
echo "No data available.";
}
$conn->close();
$jsonQuarters = json_encode($quarters);
$jsonInterventionCounts = json_encode($interventionCounts);
?>
<div class="col-md-6 my-1">
<div class="card">
<div class="card-body text-center">
<strong>
KPI3b: <u>Number of Successful Interventions or Treatments based on Provided Recommendations</u><br>
Target: <?= $interventionTarget ?> or above
</strong>
</div>
<div class="card-body">
<canvas id="KPI3b"></canvas>
</div>
</div>
</div>
<script>
const kpi3b = document.getElementById('KPI3b');
new Chart(kpi3b, {
type: 'bar',
data: {
labels: <?= $jsonQuarters ?>,
datasets: [
{
type: 'bar',
label: 'Intervention Count',
data: <?= $jsonInterventionCounts ?>,
borderWidth: 1,
borderColor: 'rgba(75, 192, 192, 1)',
backgroundColor: 'rgba(75, 192, 192, 0.8)'
},
{
type: 'line',
label: 'Target',
data: Array(<?= count($quarters) ?>).fill(<?= $interventionTarget ?>),
borderWidth: 1.2,
fill: false,
borderColor: 'black',
pointBackgroundColor: 'black',
pointRadius: 0,
pointStyle: 'line'
}
]
},
options: {
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Intervention Count'
}
},
x: {
title: {
display: true,
text: 'Quarter'
},
grid: {
display: false
}
}
},
plugins: {
tooltip: {
intersect: false
},
legend: {
position: 'bottom',
labels: {
usePointStyle: true
}
}
},
interaction: {
mode: 'index'
}
}
});
</script>