<!DOCTYPE html>
<html>
<head>
<title>D3 Scatter Plot Matrix (still and proudly Vanilla JS )</title>
<style>
/* hide scrollbar for full windows svg*/
body {
margin: 0;
overflow: hidden;
}
/* text of titles */
text.title {
font-size: 15px;
font-weight: bold;
fill: black;
}
/* text of both axes */
.tick text {
font-size: 10px;
}
</style>
<!-- use a browser global (we are in a Vanilla fashion) -->
<script src="https://unpkg.com/d3@6.7.0/dist/d3.min.js"></script>
</head>
<body>
<script>
// d3 fake "imports"
const {
csv,
select,
scaleLinear,
scaleOrdinal,
extent,
axisLeft,
axisBottom,