Skip to content

Instantly share code, notes, and snippets.

@keckelt
Created March 24, 2020 15:00
Show Gist options
  • Save keckelt/4e3918883458d42d8697989acbf2f4e5 to your computer and use it in GitHub Desktop.
Save keckelt/4e3918883458d42d8697989acbf2f4e5 to your computer and use it in GitHub Desktop.
Facetted Cars Scatterplot
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"data": {"url": "data/cars.json"},
"mark": {"type": "point", "tooltip": true},
"encoding": {
"x": {"field": "Horsepower", "type": "quantitative"},
"y": {"field": "Miles_per_Gallon", "type": "quantitative"},
"color": {"field": "Origin", "type": "nominal"},
"opacity": {"value": 0.5},
"row": {"field": "Origin", "type": "ordinal"}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment