embed({
"$schema":"https://vega.github.io/schema/vega-lite/v5.json",
"data": {"values": data},
"mark": "circle",
"params": [
{
"name": "name4",
"bind": "scales",
"select": {"type": "interval"}
}
],
"encoding": {
"x": {
"field":"Horsepower", "type": "quantitative",
"scale": {"domain": [75,150]}
},
"y": {
"field": "Miles_per_Gallon", "type": "quantitative",
"scale": {"domain": [20,40]}
},
"size": {
"field": "Cylinders", "type":"quantitative"
}
}
})