report updated

This commit is contained in:
Lorenzo Volpi 2023-10-19 02:42:18 +02:00
parent e0bc14a97c
commit 70de2d08c2
1 changed files with 11 additions and 12 deletions

View File

@ -1,4 +1,3 @@
from email import header
from typing import Tuple
import statistics as stats
import numpy as np
@ -10,17 +9,17 @@ def _in_div(s):
def _header_footer(s):
return (
"""
<html>
<head>
<style>
.dataframe {
tr:hover {
background-color: aquamarine;
}
}
</style>
</head>
<body>
<html>
<head>
<style>
.dataframe {
tr:hover {
background-color: aquamarine;
}
}
</style>
</head>
<body>
""" +
s +
"</body></html>"