Plot.plot({
style: {
background: "#f8df20"
},
marks: [
Plot.image(episode_metrics, {
x: "question_ratio",
y: "exclamation_ratio",
tip: true,
src: src,
r: 8
}),
Plot.crosshair(episode_metrics, {
x: "question_ratio",
y: "exclamation_ratio",
textFill: "red",
textStroke: "white",
strokeWidth: 3
}),
Plot.image(episode_metrics, {
x: 0.13,
y: 0.27,
src: () => logo,
width: 150,
height: 100
}),
Plot.image(episode_metrics, {
x: 0.13,
y: 0.23,
src: "https://andphilosophy.com/wp-content/uploads/2020/09/bobs-burgers.jpg",
width: 150,
height: 100
})
],
height: 600,
width: 700
})