Plot.plot({
width:800,
height:600,
marginBottom:100,
inset: 20,
x: {label: "Date de Publication"},
y: {grid: true, label: "Nombre d'exemplaires vendus", tickFormat: ".2s"},
marks: [
Plot.ruleY([0]),
Plot.image(images, {
x: "date_de_publication",
y: "nombre_d_exemplaires_vendus",
src: "image",
width: 35,
title: "titre"
})
]
})