function createLegend(matrix, label = "Interaction strength") {
return Plot.legend({
color: {
domain: [
d3.min(matrix.map((e) => d3.min(e))),
d3.max(matrix.map((e) => d3.max(e)))
],
scheme: "blues"
},
width: 350,
height: 50,
ticks: 5,
label: label
});
}