{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "columns": 3, "repeat": [ "Horsepower", "Miles_per_Gallon", "Acceleration", "Displacement", "Weight_in_lbs" ], "spec": { "data": { "url": "https://vega.github.io/vega-lite/data/cars.json" }, "encoding": { "color": { "field": "Origin", "type": "nominal" }, "x": { "bin": true, "field": { "repeat": "repeat" }, "type": "quantitative" }, "y": { "aggregate": "count", "type": "quantitative" } }, "mark": "bar" } }