-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport_template.html
More file actions
80 lines (77 loc) · 1.85 KB
/
report_template.html
File metadata and controls
80 lines (77 loc) · 1.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
h1 {
color: #333;
}
h2 {
color: #555;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table, th, td {
border: 1px solid #ccc;
}
th, td {
padding: 10px;
text-align: left;
}
.plot {
text-align: center;
margin: 20px 0;
}
</style>
</head>
<body>
<h1>{{ title }}</h1>
<h2>Data Summary</h2>
<table>
<tr>
<th>Metric</th>
<th>Value</th>
</tr>
<tr>
<td>Standard Error</td>
<td>{{ data_summary.standard_error }}</td>
</tr>
<tr>
<td>Confidence Interval</td>
<td>{{ data_summary.confidence_interval }}</td>
</tr>
<tr>
<td>Mean Squared Error (MSE)</td>
<td>{{ data_summary.mse }}</td>
</tr>
<tr>
<td>T-statistic</td>
<td>{{ data_summary.t_stat }}</td>
</tr>
<tr>
<td>P-value</td>
<td>{{ data_summary.p_value }}</td>
</tr>
</table>
<h2>Plots</h2>
<div class="plot">
<h3>Distribution Plot</h3>
<img src="{{ plots.distribution_plot }}" alt="Distribution Plot">
</div>
<div class="plot">
<h3>Confidence Interval Plot</h3>
<img src="{{ plots.confidence_interval_plot }}" alt="Confidence Interval Plot">
</div>
<h2>Conclusion</h2>
<p>{{ conclusion }}</p>
</body>
</html>