32 lines
920 B
PHP
32 lines
920 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Linear Regression Forecast</title>
|
|
</head>
|
|
<body>
|
|
<h1>Linear Regression Forecast</h1>
|
|
<p>Koefisien (Slope): <?php echo $slope; ?></p>
|
|
<p>Intercept: <?php echo $intercept; ?></p>
|
|
<p>Perkiraan jumlah kasus stunting di tahun 2025: <?php echo $forecast_2025; ?></p>
|
|
<h2>Data Kasus</h2>
|
|
<table border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>Tahun</th>
|
|
<th>Jumlah Kasus</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($years as $index => $year): ?>
|
|
<tr>
|
|
<td><?php echo $year; ?></td>
|
|
<td><?php echo $cases[$index]; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|