embed({
$schema: "https://vega.github.io/schema/vega-lite/v4.json",
data: {
url: "https://vega.github.io/vega-datasets/data/cars.json"
},
repeat: {
row: ["Horsepower", "Miles_per_Gallon", "Acceleration"],
column: ["Horsepower", "Miles_per_Gallon", "Acceleration"],
},
spec: {
mark: "circle",
encoding: {
x: { field: { repeat: "row" }, type: "quantitative" },
y: { field:{ repeat: "column" }, type: "quantitative" },
color: { field: "Origin", type: "nominal" }
}
}
})