-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport.php
708 lines (676 loc) · 42.1 KB
/
import.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
<?php
//include library phpspreadsheet
include 'vendor/autoload.php';
//kondisi jika user memasukan data training dan data testing
if(isset($_FILES["import_excel_dtr"]["name"]) != '' && isset($_FILES["import_excel_dts"]["name"]) != '') {
//ekstensi yang diperbolehkan
$allowed_extension = array('xls', 'csv', 'xlsx');
$file_array = explode(".", $_FILES["import_excel_dtr"]["name"]);
$file_extension = end($file_array);
if(in_array($file_extension, $allowed_extension)) {
$file_name = time() . '.' . $file_extension;
move_uploaded_file($_FILES['import_excel_dtr']['tmp_name'], $file_name);
$file_type = \PhpOffice\PhpSpreadsheet\IOFactory::identify($file_name);
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($file_type);
$spreadsheet = $reader->load($file_name);
unlink($file_name);
$data = $spreadsheet->getActiveSheet()->toArray();
$i = 0;
$attrTitle = array();
$kelas = array();
//loop untuk setiap data dalam file data training
foreach($data as $row) {
if ($i == 0) {
echo "<div style=\"display: flex; flex-direction: column; justify-content: space-evenly; height: 100%;\">
<div style=\"width: 90%; margin: 5%; border-radius: 15px; padding:10px;box-shadow: 0px 6px 19px -9px rgba(0,0,0,0.56);\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Data Training</h3>
<table style=\"width: 100%;font-size: 12px; font-weight: 500;border-collapse: collapse;\">
<tr style=\"height: 35px; \">
<th>NO</th>";
//looping kolom - kolom di baris pertama (heading tabel)
for ($x=0; $x < count($row); $x++) {
echo "<th>".$row[$x]."</th>";
$attrTitle[$x] = $row[$x];//variabel untuk menyimpan heading tabel
}
echo "</tr>";
} else {
if (($i % 2) == 0) {
//jika baris genap, background akan menjadi abu - abu
echo "<tr style=\"height: 35px;background-color: #f5f8fa;\">";
} else {
//jika baris ganjil, background warna default (putih)
echo "<tr style=\"height: 35px;\">";
}
//Kolom No Baris
echo "<td>".$i."</td>";
//looping kolom kolom di baris selain baris data
for ($y=0; $y < count($row); $y++) {
//menampilkan setiap kolom
//pada kasus pegawai adalah
//| 1 | ALI TOPAN | JUNIOR | MUDA | BAIK | SANGAT BAIK | PROMOSI |
echo "<td>".$row[$y]."</td>";
if ($y == count($row)-1) {
//variabel array untuk menyimpan KELAS pada kolom terakhir (Hasil Evaluasi)
$kelas[count($kelas)] = $row[$y];
} else {
//variabel untuk memberikan penomoran atribut
$nmAttr = $y;
if (empty(${"attr$nmAttr"})) {
//jika variabel $attr dengan nomor $nmAttr kosong, maka akan mendeklarasikan
//variabel baru bernama $attr dengan nomor $nmAttr bertipe array
//contoh $attr1,$attr2,$attr3, dst
//variabel ini digunakan untuk menyimpan data pada setiap kolom atribut
${"attr$nmAttr"} = array();
}
//jika variabel telah di deklarasikan, maka simpan data pada kolom atribut
${"attr$nmAttr"}[count(${"attr$nmAttr"})] = $row[$y];
}
}
echo "</tr>";
}
$i++;
}
echo "</table>
</div>
</div><br>";
//------------------------- Hitung jumlah dan probabilitas kelas pada data training
echo "<div style=\"border:1px solid black;width: fit-content;padding: 20px;margin: auto;\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Jumlah dan probabilitas kelas pada data training</h3>
<p style=\"text-align:left;\">";
//looping data apa saja yang ada di variabel kelas
//pada kasus pegawai berarti loop 3 kali
//dengan macam kelas adalah PROMOSI,MUTASI,PHK
for($a=0;$a<count(array_unique($kelas));$a++){
//menampilkan n(Ci) atau jumlah kemunculan pada setiap kelas
//contoh pada kasus pegawai n(Ci) = n(PROMOSI) = 15 Kali
echo "n(Ci) = n(".array_values(array_unique($kelas))[$a].") = ".array_count_values($kelas)[array_values(array_unique($kelas))[$a]]." Kali<br>";
}
//menampilkan jumlah baris data pada data training
echo "n(C) = n(RecordKelas) = ".(count($data)-1)." Kali
</p>
<b>";
//looping data apa saja yang ada di variabel kelas
for($a=0;$a<count(array_unique($kelas));$a++){
//menampilkan probabilitas setiap kelas
//contoh pada kasus pegawai P(PROMOSI) = n(PROMOSI) / n(RecordKelas) = 15/33
echo "<h3 style=\"text-align:left;\">P(".array_values(array_unique($kelas))[$a].") = n(".array_values(array_unique($kelas))[$a].") / n(RecordKelas) = ".array_count_values($kelas)[array_values(array_unique($kelas))[$a]]."/".(count($data)-1)."</h3>";
}
echo "</b>
</div><br>
";
//------------------------- Hitung Probabilitas kriteria atribut dengan kelas yang sama
echo "<div style=\"display: flex;justify-content: space-evenly;flex-direction: column;min-height: 100%;text-align:center;\">";
echo "<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Probabilitas kriteria atribut dengan kelas yang sama</h3>";
//looping setiap heading table
//$attrTitle = Atribut Title / Judul Atribut
for ($a=0; $a < count($attrTitle); $a++) {
//kolom yang dianggap atribut adalah selain kolom 1 dan kolom terakhir
//kolom 1 dianggap sebagai identitas, pada kasus pegawai adalah nama pegawai
//kolom terakhir dianggap sebagai kelas
//sehingga loop 6 kali,namun hanya 4 kali loop yang masuk kondisi ini
//contoh pada kasus pegawai MASA KERJA,USIA,NILAI PELATIHAN,NILAI KERJA
if ($a !== 0 && $a !== count($attrTitle)-1) {
if ($a & 1) {
//untuk loop pertama akan menampilkan tag div untuk menaungi 2 buah tabel
echo "<div style=\"display: flex;justify-content: space-evenly;padding: 10px 0px;\">";
}
echo "<style type=\"text/css\">.tbProbAC, .tbProbAC td, .tbProbAC th {border: 1px solid black;font-size: 12px;font-weight: 500;padding: 0px 30px;}</style>
<table class=\"tbProbAC\" style=\"border-collapse: collapse;max-width: 50%;\">
<tr><th>".$attrTitle[$a]."</th><th colspan=\"3\">KEMUNCULAN</th></tr>
<tr><th>P(Ai|Ci)</th><th>n(Ai)</th><th>n(Ai)/n(Ci)</th></tr>";
//looping data apa saja yang ada di ${"attr$a"}
//$at untuk penomoran looping Atribut
//contoh pada kasus pegawai
//$attr1 = JUNIOR,SUPERVISOR,MANAGER
//$attr2 = MUDA,PARUBAYA,TUA
for ($at=0; $at < count(array_unique(${"attr$a"})); $at++) {
//looping data apa saja di variabel kelas
for ($kl=0; $kl < count(array_unique($kelas)); $kl++) {
//variabel untuk menghitung kemunculan
$muncul = 0;
//looping seluruh data di ${"attr$a"}
//$co = Count / hitung
//pada kasus pegawai akan di looping sebanyak 33 kali
for ($co=0; $co < count(${"attr$a"}); $co++) {
//jika atribut pada value looping co sama dengan value lopping at
//sebagai contoh
//Looping 1 JUNIOR = JUNIOR
//Looping 2 SUPERVISOR = JUNIOR
if (${"attr$a"}[$co] == array_values(array_unique(${"attr$a"}))[$at]) {
//jika value kelas ke sekian sama dengan value looping kl
//jika atribut JUNIOR dan kelas PROMOSI maka akan menambah kemunculan
if ($kelas[$co] == array_values(array_unique($kelas))[$kl]) {
$muncul++;
}
}
}
echo "<tr><td style='text-align:left;'>".array_values(array_unique(${"attr$a"}))[$at]." | ".array_values(array_unique($kelas))[$kl]."</td><td>".$muncul."</td><td>".$muncul."/".array_count_values($kelas)[array_values(array_unique($kelas))[$kl]]."</td></tr>";
//variabel berisi judul atribut
$atn = str_replace([' ','(',')'], '', $attrTitle[$a]);
//variabel berisi atribut
$ai = str_replace([' ','(',')'], '', array_values(array_unique(${"attr$a"}))[$at]);
//variabel berisi kelas
$ci = str_replace([' ','(',')'], '', array_values(array_unique($kelas))[$kl]);
//membuat variabel untuk setiap probabilitas atribut terhadap kelas P(Ai|Ci)
//contoh pada kasus pegawai
//MASAKERJAdlmtahunJUNIORPROMOSI,MASAKERJAdlmtahunJUNIORMUTASI,
//USIAdlmtahunMUDAPROMOSI,USIAdlmtahunMUDAMUTASI,
//total ada 36 variabel
${"p$atn$ai$ci"} = $muncul."/".array_count_values($kelas)[array_values(array_unique($kelas))[$kl]];
}
}
echo "</table>";
if (~$a & 1) {
echo "</div>";
}
}
}
echo "</div>";
}
//------------------------- Perhitungan Data Testing
//ekstensi yang diperbolehkan
$allowed_extension = array('xls', 'csv', 'xlsx');
$file_array = explode(".", $_FILES["import_excel_dts"]["name"]);
$file_extension = end($file_array);
$laplace = false;
if(in_array($file_extension, $allowed_extension)) {
$file_name = time() . '.' . $file_extension;
move_uploaded_file($_FILES["import_excel_dts"]['tmp_name'], $file_name);
$file_type = \PhpOffice\PhpSpreadsheet\IOFactory::identify($file_name);
$reader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($file_type);
$spreadsheet = $reader->load($file_name);
unlink($file_name);
$dataT = $spreadsheet->getActiveSheet()->toArray();
$i = 0;
//variabel untuk menyimpan isi kolom pertama
//pada kasus karyawan, variabel ini akan menyimpan seluruh nama karyawan
$frst_col = array();
//loop untuk setiap data dalam file data Testing
foreach($dataT as $row) {
//kondisi pada baris pertama akan menampilkan tabel heading
if ($i == 0) {
echo "
<div style=\"display: flex; flex-direction: column; justify-content: space-evenly; height: 100%;\">
<div style=\"width: 90%; margin: 5%; border-radius: 15px; padding:10px;box-shadow: 0px 6px 19px -9px rgba(0,0,0,0.56);\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Data Testing</h3>
<table style=\"width: 100%;font-size: 12px; font-weight: 500;border-collapse: collapse;\">
<tr style=\"height: 35px; \">
<th>NO</th>";
//looping kolom - kolom di baris pertama (heading tabel)
for ($x=0; $x < count($row); $x++) {
echo "<th>".$row[$x]."</th>";
$attrTitle[$x] = $row[$x];//variabel untuk menyimpan heading tabel
}
echo "</tr>";
} else {
if (($i % 2) == 0) {
//jika baris genap, background akan menjadi abu - abu
echo "<tr style=\"height: 35px;background-color: #f5f8fa;\">";
} else {
//jika baris ganjil, background warna default (putih)
echo "<tr style=\"height: 35px;\">";
}
//Kolom No Baris
echo "<td>".$i."</td>";
//looping kolom kolom data
for ($y=0; $y < count($row); $y++) {
//menampilkan setiap kolom
//pada kasus pegawai adalah
//| 1 | BUDIANO | SUPERVISOR | TUA | SANGAT BAIK | KURANG |
echo "<td>".$row[$y]."</td>";
if ($y == 0) {
//kolom pertama akan berisi identitas
//pada kasus karyawan, akan menampilkan seluruh nama karyawan
$frst_col[count($frst_col)] = $row[$y];
}
if ($y !== count($row)-1) {
//variabel untuk memberikan penomoran atribut
$nmAttr = $y;
if (empty(${"attrTr$nmAttr"})) {
//jika variabel $attr dengan nomor $nmAttr kosong, maka akan mendeklarasikan
//variabel baru bernama $attr dengan nomor $nmAttr bertipe array
//contoh $attr1,$attr2,$attr3, dst
//variabel ini digunakan untuk menyimpan data pada setiap kolom atribut
${"attrTr$nmAttr"} = array();
}
//jika variabel telah di deklarasikan, maka simpan data pada kolom atribut
${"attrTr$nmAttr"}[count(${"attrTr$nmAttr"})] = $row[$y];
}
}
echo "</tr>";
}
$i++;
}
echo "</table>
</div>
</div><br>";
//------------------------- Kalikan semua hasil sesuai dengan data testing yang akan dicari kelasnya
echo "
<div style=\"width: fit-content;padding: 15px;margin: auto;border-radius: 10px;\">
<style type=\"text/css\">.calcTesting, .calcTesting td, .calcTesting th {border: 1px solid black;font-size: 12px;font-weight: 500;padding: 0px 20px;}</style>
<table class=\"calcTesting\" style=\"border: 1px solid black;border-collapse: collapse;min-width: 20%;\">";
//loop untuk setiap data dalam file data Testing
for ($i=0; $i < count($dataT)-1; $i++) {
//menampilkan nama pegawai
//dan looping setiap kelas
echo "<tr>
<td rowspan='".count(array_unique($kelas))."'>".$frst_col[$i]."</td>
<td style='text-align:left;'> P (";
//looping setiap heading table
//$attrTitle = Atribut Title / Judul Atribut
for ($x=0; $x < count($attrTitle); $x++) {
//kolom yang dianggap atribut adalah selain kolom 1 dan kolom terakhir
//kolom 1 dianggap sebagai identitas, pada kasus pegawai adalah nama pegawai
//kolom terakhir dianggap sebagai kelas
//sehingga loop 6 kali,namun hanya 4 kali loop yang masuk kondisi ini
//contoh pada kasus pegawai MASA KERJA,USIA,NILAI PELATIHAN,NILAI KERJA
if ($x !== 0 && $x !== count($attrTitle)-1) {
//menampilkan nama masing masing atribut
if ($x == count($attrTitle)-2) {
echo ${"attrTr$x"}[$i]." ";
} else {
echo ${"attrTr$x"}[$i].", ";
}
}
}
//menampilkan kelas yang pertama
echo " | ".array_values(array_unique($kelas))[0].") = </td>";
echo "<td style='text-align:left;'>".array_count_values($kelas)[array_values(array_unique($kelas))[0]]."/".(count($data)-1)." * ";
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[0]])/intval((count($data)-1));
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
if ($x == count($attrTitle)-2) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[0]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
echo ${"p$res"};
} else {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[0]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
echo ${"p$res"}." * ";
}
}
}
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[0]);
${"p$pvar"} = $pa;
echo "</td>";
echo "</tr>";
for ($a=1; $a < count(array_unique($kelas)); $a++) {
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[$a]])/intval((count($data)-1));
echo "<tr>
<td style='text-align:left;'> P (";
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
if ($x == count($attrTitle)-2) {
echo ${"attrTr$x"}[$i]." ";
} else {
echo ${"attrTr$x"}[$i].", ";
}
}
}
echo " | ".array_values(array_unique($kelas))[$a].") = </td>
<td style='text-align:left;'>".array_count_values($kelas)[array_values(array_unique($kelas))[$a]]."/".(count($data)-1)." * ";
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
if ($x == count($attrTitle)-2) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[$a]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
echo ${"p$res"};
} else {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[$a]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
echo ${"p$res"}." * ";
}
}
}
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[$a]);
${"p$pvar"} = $pa;
echo "</td>
</tr>";
}
}
echo "</table></div>
";
//------------------------- Hasil Perhitungan Tanpa Laplacian Correction
$i = 0;
//looping seluruh data testing dari file yang di upload
foreach($dataT as $row) {
//kondisi pada baris pertama akan menampilkan tabel heading
if ($i == 0) {
echo "
<div style=\"display: flex; flex-direction: column; justify-content: space-evenly; height: 100%;\">
<div style=\"width: 90%; margin: 5%; border-radius: 15px; padding:10px;box-shadow: 0px 6px 19px -9px rgba(0,0,0,0.56);\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Hasil Perhitungan</h3>
<table style=\"width: 100%;font-size: 12px; font-weight: 500;border-collapse: collapse;\">
<tr style=\"height: 35px; \">
<th>NO</th>";
//looping kolom - kolom di baris pertama (heading tabel)
for ($x=0; $x < count($row)-1; $x++) {
echo "<th>".$row[$x]."</th>";
$attrTitle[$x] = $row[$x];//variabel untuk menyimpan heading tabel
}
//looping heading tabel untuk masing - masing kelas
for ($x=0; $x < count(array_unique($kelas)); $x++) {
echo "<th>P|".array_values(array_unique($kelas))[$x]."</th>";
}
//heading tabel untuk kolom kelas
echo "<th>".$row[count($row)-1]."</th>";
echo "</tr>";
} else {
if (($i % 2) == 0) {
//jika baris genap, background akan menjadi abu - abu
echo "<tr style=\"height: 35px;background-color: #f5f8fa;\">";
} else {
//jika baris ganjil, background warna default (putih)
echo "<tr style=\"height: 35px;\">";
}
//Kolom No Baris
echo "<td>".$i."</td>";
//looping kolom kolom data
for ($y=0; $y < count($row)-1; $y++) {
//menampilkan setiap kolom
//pada kasus pegawai adalah
//| 1 | BUDIANO | SUPERVISOR | TUA | SANGAT BAIK | KURANG |
echo "<td>".$row[$y]."</td>";
}
$hasil = 0;
$max = 0;
//looping data apa saja yang ada di variabel kelas
//pada kasus pegawai berarti loop 3 kali
//dengan macam kelas adalah PROMOSI,MUTASI,PHK
for ($x=0; $x < count(array_unique($kelas)); $x++) {
//$v berfungsi untuk membuat nama variabel untuk mendapatkan hasil perhitungan
$v = str_replace([' ','(',')'], '',$row[0].array_values(array_unique($kelas))[$x]);
//menampilkan hasil dengan 9 angka dibelakang koma
echo "<td>".round(${"p$v"},9)."</td>";
//$max berisi nilai terbesar dari perhitungan akhir
$max = max($max,round(${"p$v"},9));
if ($max == round(${"p$v"},9)) {
//menyimpan keputusan akhir ke dalam variabel $hasil
$hasil = array_values(array_unique($kelas))[$x];
}
}
//kolom hasil evaluasi akhir
echo "<td>".$hasil."</td>";
echo "</tr>";
}
$i++;
}
echo "</table>
</div>
</div><br>";
//------------------------- Perhitungan Laplacian Correction
for ($i=0; $i < count($dataT)-1; $i++) {
$val = 0;
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[0]])/intval((count($data)-1));
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
if ($x == count($attrTitle)-2) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[0]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
} else {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[0]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
}
}
}
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[0]);
${"p$pvar"} = $pa;
if (${"p$pvar"} == 0) {
$laplace = true;
echo "<p>Pada kasus <b>".$frst_col[$i]."</b>, dikarenakan ada nilai 0 sehingga menyebabkan ketidakakuratan perhitungan maka perlu diantisipasi dengan Metode Laplacian Correction</p><br>";
echo "<div style=\"width: fit-content;padding: 15px;margin: auto;border-radius: 10px;\">
<style type=\"text/css\">.calcTesting, .calcTesting td, .calcTesting th {border: 1px solid black;font-size: 12px;font-weight: 500;padding: 0px 20px;}</style>
<table class=\"calcTesting\" style=\"border: 1px solid black;border-collapse: collapse;min-width: 20%;\">
";
echo "<tr>
<td></td>
<td>Sebelum</td>
<td>Sesudah</td>
</tr>";
$newRes = "";
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[0]])/intval((count($data)-1));
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[0]);
echo "<tr>
<td>".${"attrTr$x"}[$i]." | ".array_values(array_unique($kelas))[0]."</td>
<td>".${"p$res"}."</td>";
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
${"n$res"} = strval(intval(substr(${"p$res"}, 0, $q))+1)."/".strval(intval(substr(${"p$res"}, $q+1, strlen(${"p$res"}))) + (count($attrTitle)-2));
}
}
for ($q = 0;$q < strlen(${"n$res"});$q++){
if(substr(${"n$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"n$res"},0,$q))/intval(substr(${"n$res"},$q+1,strlen(${"n$res"}))));
}
}
echo "<td>".${"n$res"}."</td>
</tr>";
$newRes = $newRes." * ".${"n$res"};
}
}
echo "</table></div><br>";
echo "<p>Sehingga perhitungannya menjadi ";
echo array_count_values($kelas)[array_values(array_unique($kelas))[0]]."/".(count($data)-1).$newRes;
echo " = ".$pa."</p>";
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[0]);
${"p$pvar"} = $pa;
}
for ($a=1; $a < count(array_unique($kelas)); $a++) {
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[$a]])/intval((count($data)-1));
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
if ($x == count($attrTitle)-2) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[$a]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
} else {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[$a]);
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"p$res"},0,$q))/intval(substr(${"p$res"},$q+1,strlen(${"p$res"}))));
}
}
}
}
}
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[$a]);
${"p$pvar"} = $pa; if (${"p$pvar"} == 0) {
$laplace = true;
echo "<p>Pada kasus <b>".$frst_col[$i]."</b>, dikarenakan ada nilai 0 sehingga menyebabkan ketidakakuratan perhitungan maka perlu diantisipasi dengan Metode Laplacian Correction</p><br>";
echo "<div style=\"width: fit-content;padding: 15px;margin: auto;border-radius: 10px;\">
<style type=\"text/css\">.calcTesting, .calcTesting td, .calcTesting th {border: 1px solid black;font-size: 12px;font-weight: 500;padding: 0px 20px;}</style>
<table class=\"calcTesting\" style=\"border: 1px solid black;border-collapse: collapse;min-width: 20%;\">
";
echo "<tr>
<td></td>
<td>Sebelum</td>
<td>Sesudah</td>
</tr>";
$newRes = "";
$pa = intval(array_count_values($kelas)[array_values(array_unique($kelas))[$a]])/intval((count($data)-1));
for ($x=0; $x < count($attrTitle); $x++) {
if ($x !== 0 && $x !== count($attrTitle)-1) {
$res = str_replace([' ','(',')'], '', $attrTitle[$x].${"attrTr$x"}[$i].array_values(array_unique($kelas))[$a]);
echo "<tr>
<td>".${"attrTr$x"}[$i]." | ".array_values(array_unique($kelas))[$a]."</td>
<td>".${"p$res"}."</td>";
for ($q = 0;$q < strlen(${"p$res"});$q++){
if(substr(${"p$res"},$q,1) == '/'){
${"n$res"} = strval(intval(substr(${"p$res"}, 0, $q))+1)."/".strval(intval(substr(${"p$res"}, $q+1, strlen(${"p$res"}))) + (count($attrTitle)-2));
}
}
for ($q = 0;$q < strlen(${"n$res"});$q++){
if(substr(${"n$res"},$q,1) == '/'){
$pa = $pa * (intval(substr(${"n$res"},0,$q))/intval(substr(${"n$res"},$q+1,strlen(${"n$res"}))));
}
}
echo "<td>".${"n$res"}."</td>
</tr>";
$newRes = $newRes." * ".${"n$res"};
}
}
echo "</table></div><br>";
echo "<p>Sehingga perhitungannya menjadi ";
echo array_count_values($kelas)[array_values(array_unique($kelas))[$a]]."/".(count($data)-1).$newRes;
echo " = ".round($pa,9)."</p>";
$pvar = str_replace([' ','(',')'], '', $frst_col[$i].array_values(array_unique($kelas))[$a]);
${"p$pvar"} = $pa;
}
}
}
//------------------------- Hasil Setelah Perhitungan Laplacian Correction
//jika ada perhitungan laplace maka akan masuk ke kondisi ini
//dan menampilkan hasil setelah perhitungan Laplacian Correction
if($laplace == true){
$i = 0;
//loop untuk setiap data dalam file data testing
foreach($dataT as $row) {
//kondisi pada baris pertama akan menampilkan tabel heading
if ($i == 0) {
echo "
<div style=\"display: flex; flex-direction: column; justify-content: space-evenly; height: 100%;\">
<div style=\"width: 90%; margin: 5%; border-radius: 15px; padding:10px;box-shadow: 0px 6px 19px -9px rgba(0,0,0,0.56);\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Hasil Perhitungan</h3>
<table style=\"width: 100%;font-size: 12px; font-weight: 500;border-collapse: collapse;\">
<tr style=\"height: 35px; \">
<th>NO</th>";
//looping kolom - kolom di baris pertama (heading tabel)
for ($x=0; $x < count($row)-1; $x++) {
echo "<th>".$row[$x]."</th>";
$attrTitle[$x] = $row[$x];//variabel untuk menyimpan heading tabel
}
//looping heading tabel untuk masing - masing kelas
for ($x=0; $x < count(array_unique($kelas)); $x++) {
echo "<th>P|".array_values(array_unique($kelas))[$x]."</th>";
}
//heading tabel untuk kolom kelas
echo "<th>".$row[count($row)-1]."</th>";
echo "</tr>";
} else {
if (($i % 2) == 0) {
//jika baris genap, background akan menjadi abu - abu
echo "<tr style=\"height: 35px;background-color: #f5f8fa;\">";
} else {
//jika baris ganjil, background warna default (putih)
echo "<tr style=\"height: 35px;\">";
}
//Kolom No Baris
echo "<td>".$i."</td>";
//looping kolom kolom data
for ($y=0; $y < count($row)-1; $y++) {
//menampilkan setiap kolom
//pada kasus pegawai adalah
//| 1 | BUDIANO | SUPERVISOR | TUA | SANGAT BAIK | KURANG |
echo "<td>".$row[$y]."</td>";
}
$hasil = 0;
$max = 0;
//looping data apa saja yang ada di variabel kelas
//pada kasus pegawai berarti loop 3 kali
//dengan macam kelas adalah PROMOSI,MUTASI,PHK
for ($x=0; $x < count(array_unique($kelas)); $x++) {
//$v berfungsi untuk membuat nama variabel untuk mendapatkan hasil perhitungan
$v = str_replace([' ','(',')'], '',$row[0].array_values(array_unique($kelas))[$x]);
//menampilkan hasil dengan 9 angka dibelakang koma
echo "<td>".round(${"p$v"},9)."</td>";
//$max berisi nilai terbesar dari perhitungan akhir
$max = max($max,round(${"p$v"},9));
if ($max == round(${"p$v"},9)) {
//menyimpan keputusan akhir ke dalam variabel $hasil
$hasil = array_values(array_unique($kelas))[$x];
}
}
//kolom hasil evaluasi akhir
echo "<td>".$hasil."</td>";
echo "</tr>";
}
$i++;
}
echo "</table>
</div>
</div>";
}
//------------------------- Hasil Akhir
$i = 0;
//looping seluruh data testing dari file yang di upload
foreach($dataT as $row) {
//kondisi pada baris pertama akan menampilkan tabel heading
if ($i == 0) {
echo "
<div style=\"display: flex; flex-direction: column; justify-content: space-evenly; height: 100%;\">
<div style=\"width: 40%; margin: 5%; border-radius: 15px; padding:10px;box-shadow: 0px 6px 19px -9px rgba(0,0,0,0.56);\">
<h3 style=\"font-family: 'Poppins', sans-serif;font-weight: 500;\">Hasil Akhir</h3>
<table style=\"width: 100%;font-size: 12px; font-weight: 500;border-collapse: collapse;\">
<tr style=\"height: 35px; \">
<th>NO</th>";
echo "<th>".$row[0]."</th>";
echo "<th>".$row[count($row)-1]."</th>";
echo "</tr>";
} else {
if (($i % 2) == 0) {
//jika baris genap, background akan menjadi abu - abu
echo "<tr style=\"height: 35px;background-color: #f5f8fa;\">";
} else {
//jika baris ganjil, background warna default (putih)
echo "<tr style=\"height: 35px;\">";
}
//Kolom No Baris
echo "<td>".$i."</td>";
//Kolom identitas, pada kasus pegawai adalah Nama Pegawai
echo "<td>".$row[0]."</td>";
$hasil = 0;
$max = 0;
//looping data apa saja yang ada di variabel kelas
//pada kasus pegawai berarti loop 3 kali
//dengan macam kelas adalah PROMOSI,MUTASI,PHK
for ($x=0; $x < count(array_unique($kelas)); $x++) {
//$v berfungsi untuk membuat nama variabel untuk mendapatkan hasil perhitungan
$v = str_replace([' ','(',')'], '',$row[0].array_values(array_unique($kelas))[$x]);
//$max berisi nilai terbesar dari perhitungan akhir
$max = max($max,round(${"p$v"},9));
if ($max == round(${"p$v"},9)) {
//menyimpan keputusan akhir ke dalam variabel $hasil
$hasil = array_values(array_unique($kelas))[$x];
}
}
//kolom hasil evaluasi akhir
echo "<td>".$hasil."</td>";
echo "</tr>";
}
$i++;
}
echo "</table>
</div>
</div><br>";
}
}
?>