Plot.plot({
height:800,
insetLeft: 10,
insetRight: 60,
r: {range: [0, 30]},
x: {domain: sortedCountry},
marks: [
Plot.frame({anchor: "bottom"}),
Plot.dot(
transformedData,
Plot.dodgeY({
anchor: "bottom",
padding: 2,
x: "country",
r: "150m+",
fill: "teal",
stroke: "black",
})
),
]
})