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