Plot.plot({
marginLeft: 100,
marginTop: 50,
x: {
domain: [1.2, 2]
},
y: {
type: "log"
},
marks: [
Plot.dot(countries_europe, {
x: "fert_rate",
y: "area",
r: "population_20",
fill: "country",
fillOpacity: 0.8,
stroke: "black",
tip: true,
channels: {
country: "country"
}
})
]
})