Skip to content
Snippets Groups Projects
singleview_6_15_heatmap.vl.json 534 B
Newer Older
Danyel Fisher's avatar
Danyel Fisher committed
{
  "$schema": "https://vega.github.io/schema/vega-lite/v2.json",
  "config": {"background":"#ffffff",
    "range": {
      "heatmap": {
        "scheme": "yellowgreenblue"
      }
    }
  },     
  "width": 600,
  "data": {"url": "data/complaints.csv", "format": {"type": "csv"}},
  "mark": "rect",
  "encoding": {
    "y": {"field": "Product", "type": "nominal"},
    "x": {
      "field": "Date received", 
      "type": "temporal", 
      "timeUnit":"yearmonth"},
    "color": {"aggregate": "count", "type": "quantitative"}
Danyel Fisher's avatar
Danyel Fisher committed
  }
}