This website is for Vega-Lite v3. Go to the main Vega-Lite homepage for the latest release.

Using the lookup transform to combine data

View this example in the online editor

Vega-Lite JSON Specification

{
  "$schema": "https://vega.github.io/schema/vega-lite/v3.json",
  "data": {"url": "data/lookup_groups.csv"},
  "transform": [{
    "lookup": "person",
    "from": {
      "data": {"url": "data/lookup_people.csv"},
      "key": "name",
      "fields": ["age", "height"]
    }
  }],
  "mark": "bar",
  "encoding": {
    "x": {"field": "group", "type": "ordinal"},
    "y": {"field": "age", "aggregate": "mean", "type": "quantitative"}
  }
}