Newer
Older
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"config": {"background":"#ffffff"},
"mark": "bar",
"data": {"url": "data/complaints.csv", "format": {"type": "csv"}},
"transform": [{
"as": "relief",
"calculate": "indexof(datum['Company response to consumer'], 'relief') >= 0"
}],
"encoding": {
"y": {"field": "Product", "type": "nominal"},
"x": {"aggregate": "count", "type": "quantitative"},