Plot.plot({
x: { label: "Year", tickFormat: d => d.toString() },
y: { label: "Proportion of Meat Type in Total Consumption (%)", domain: [0, 80] },
marks: [
Plot.line(meatData, { x: "year", y: "beef", stroke: "green", strokeWidth: 2 }),
Plot.line(meatData, { x: "year", y: "poultry_pork", stroke: "orange", strokeWidth: 2 })
],
width: 800,
height: 500
})