-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpi2.php
237 lines (200 loc) · 5.22 KB
/
kpi2.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!-- kpi2a -->
<?php
$currentYear = 2023; // Change this to the current year for KPI2a
$dataProcessingTime_target = 3.1; // Change this to the target value for KPI2a
?>
<!-- /* KPI2b */ -->
<?php
$currentYear = 2023; // Change this to the current year for KPI2b
$dataErrorsTarget = 5; // Change this to the target value for KPI2b
?>
<div class="col-md-6 my-1">
<div class="card">
<div class="card-body text-center">
<strong>
KPI2a: <u>Data Processing Time per Patient for Cardiovascular Disease Diagnosis</u><br>
Year: <?= $currentYear ?><br>
Target: <?= $dataProcessingTime_target ?>
</strong>
</div>
<div class="card-body">
<canvas id="KPI2a"></canvas>
</div>
</div>
</div>
<div class="col-md-6 my-1">
<div class="card">
<div class="card-body text-center">
<strong>
KPI2b: <u>Data Errors and Inconsistencies in the Cardiovascular Disease Database</u><br>
Target: <?= $dataErrorsTarget ?> or below<br>
Current Year: <?= $currentYear ?>
</strong>
</div>
<div class="card-body">
<canvas id="KPI2b"></canvas>
</div>
</div>
</div>
<!-- kpi2a -->
<?php
$currentYear = 2023; // Change this to the current year for KPI2a
$dataProcessingTime_target = 3.1; // Change this to the target value for KPI2a
?>
<?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
$stmt = $conn->prepare("CALL GetDataProcessingTimePerPatient(?)");
$stmt->bind_param("i", $currentYear);
// Execute the stored procedure
$stmt->execute();
// Get the result
$result = $stmt->get_result();
$patientInfo = array();
$avgProcessingTimes = array();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$patientInfo[] = $row['patient_info'];
$avgProcessingTimes[] = $row['avg_processing_time'];
}
} else {
echo "No data available.";
}
$stmt->close();
$conn->close();
$jsonPatientInfo = json_encode($patientInfo);
$jsonAvgProcessingTimes = json_encode($avgProcessingTimes);
?>
<script>
const kpi2a = document.getElementById('KPI2a');
new Chart(kpi2a, {
type: 'bar',
data: {
labels: <?= $jsonPatientInfo ?>,
datasets: [
{
label: 'Average Processing Time',
data: <?= $jsonAvgProcessingTimes ?>,
backgroundColor: 'rgba(54, 162, 235, 0.4)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1
},
{
type: 'line',
label: 'Target',
data: Array(<?= count($patientInfo) ?>).fill(<?= $dataProcessingTime_target ?>),
borderColor: 'rgba(255, 99, 132, 1)',
borderWidth: 2,
borderDash: [5, 5],
fill: false,
radius: 0,
tension: 0
}
]
},
options: {
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Average Processing Time'
}
},
x: {
title: {
display: true,
text: 'Patient Information'
}
}
},
plugins: {
legend: {
display: false
},
tooltip: {
intersect: false
}
}
}
});
/* KPI2b */
<?php
$currentYear = 2023; // Change this to the current year for KPI2b
$dataErrorsTarget = 5; // Change this to the target value for KPI2b
?>
<?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 GetDataErrorsAndInconsistencies($currentYear)";
$result = $conn->query($sql);
$months = array();
$dataErrors = array();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$months[] = $row['month'];
$dataErrors[] = $row['data_errors'];
}
} else {
echo "No data available.";
}
$conn->close();
$jsonMonths = json_encode($months);
$jsonDataErrors = json_encode($dataErrors);
?>
const kpi2b = document.getElementById('KPI2b');
new Chart(kpi2b, {
type: 'line',
data: {
labels: <?= $jsonMonths ?>,
datasets: [
{
label: 'Data Errors',
data: <?= $jsonDataErrors ?>,
fill: false,
borderColor: 'rgba(75, 192, 192, 1)',
tension: 0.1
},
{
label: 'Target',
data: Array(<?= count($months) ?>).fill(<?= $dataErrorsTarget ?>),
fill: false,
borderColor: 'rgba(255, 99, 132, 1)',
borderDash: [5, 5],
tension: 0.1
}
]
},
options: {
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Data Errors'
}
}
},
plugins: {
legend: {
display: true
},
tooltip: {
intersect: false
}
}
}
});
</script>