Plot.plot({
caption: "Languages with Central Package Repositories",
width: 800,
height: 400,
marginLeft: 100,
y : {type: "log", label: "Number of published packages"},
x: {tickFormat: d => d, label: "Year language created"},
inset: 20,
grid: true,
marks: [
Plot.text(data, {x: "appeared", y: "packages", text: "id", dx: 10})
]
})