VegaLite({
width: 800,
height: 400,
data: { values: df },
mark: {
type: "point",
filled: true
},
selection: {
highlight: { type: "single", on: "mouseover" }
},
encoding: {
x: {
field: "value_eur",
type: "quantitative",
title: "Value in euros"
},
y: {
field: "potential",
type: "quantitative",
title: "Potential"
},
size: {
field: "international_reputation",
type: "ordinal",
legend: null,
scale: { range: [10, 50, 100, 150, 300] }
},
color: {
field: "international_reputation",
type: "ordinal",
title: "International reputation",
scale: { range: ["#A18D43", "#DFBC69", "#E9D9A0", "#AAF47A", "#5dDF09"] }
},
opacity: {
condition: { selection: "highlight", value: 0.8 },
value: 0.2
},
tooltip: [
{ field: "value_eur", type: "quantitative", title: "Value in euros" },
{ field: "potential", type: "quantitative", title: "Potential" },
{
field: "international_reputation",
type: "ordinal",
title: "International reputation"
}
]
}
})