embed(
{
$schema: "https://vega.github.io/schema/vega-lite/v5.json",
height: 300,
width: 400,
data: {values: data_2000},
mark: {type: "point", tooltip: true},
encoding: {
x: {field: "fertility", type: "quantitative", scale: {zero: true}, title: "Fertility"},
y: {field: "life_expect", type: "quantitative", scale: {zero: true}, title: "Life Expectancy"},
color: {field: "cluster", type: "nominal", title: "Cluster"},
size: {field: "pop", type: "quantitative", title: "Pop"}
}
})