-
Notifications
You must be signed in to change notification settings - Fork 0
/
database_report.html
63 lines (57 loc) · 2.34 KB
/
database_report.html
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
<html>
<head>
<title>Database Analysis Report</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.stat-box {
background: #f5f5f5;
padding: 20px;
margin: 10px 0;
border-radius: 5px;
}
.section { margin: 30px 0; }
h1, h2 { color: #333; }
</style>
</head>
<body>
<div class="container">
<h1>Database Analysis Report</h1>
<p>Generated on: 2024-10-23 07:13:19</p>
<div class="section">
<h2>General Statistics</h2>
<div class="stat-box">
<p>Total Entries: 673</p>
<p>Date Range: 2024-10-09 to 2024-10-23</p>
<p>Unique Dates: 15</p>
<p>Average Entries per Day: 44.87</p>
</div>
</div>
<div class="section">
<h2>Sentiment Analysis</h2>
<div class="stat-box">
<p>Average Sentiment: 4.80</p>
<p>Median Sentiment: 4.53</p>
<p>Standard Deviation: 2.46</p>
<p>Range: 0.17 to 9.92</p>
</div>
</div>
<div class="section">
<h2>Content Analysis</h2>
<div class="stat-box">
<p>Unique Articles: 627</p>
<p>Average Summary Length: 326 characters</p>
<p>Summary Length Range: 45 to 553 characters</p>
</div>
</div>
<div class="section">
<h2>Activity Patterns</h2>
<div class="stat-box">
<p>Most Active Hour: 09:00</p>
<p>Busiest Day: 2024-10-23 (85 entries)</p>
<p>Quietest Day: 2024-10-09 (4 entries)</p>
</div>
</div>
</div>
</body>
</html>