html that combines all plots

This commit is contained in:
SoulKindred 2024-01-08 11:08:58 +01:00
parent 9536153371
commit 36dba35696

39
analysis/html/index.html Normal file
View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DB_23</title>
<style>
body {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
iframe {
box-sizing: border-box;
width: 48%;
height: 400px;
margin: 5px;
}
iframe[src="heat_map_time.html"] {
width: 100%;
height: 900px;
}
</style>
</head>
<body>
<iframe src="heat_map_time.html"></iframe>
<iframe src="acc_by_year.html"></iframe>
<iframe src="acc_by_weekday.html"></iframe>
<iframe src="acc_by_daytime.html"></iframe>
<iframe src="plt_acc_by_day_year.html"></iframe>
<iframe src="acc_by_type.html"></iframe>
<iframe src="bike_by_month.html"></iframe>
<iframe src="ped_by_month.html"></iframe>
<iframe src="severity_by_month.html"></iframe>
<iframe src="severity_by_year.html"></iframe>
</body>
</html>