Skip to content

Instantly share code, notes, and snippets.

@milafrerichs
Last active August 24, 2016 17:28
Show Gist options
  • Save milafrerichs/6a8e190785cde0fe7e5ecef0c2d1f80d to your computer and use it in GitHub Desktop.
Save milafrerichs/6a8e190785cde0fe7e5ecef0c2d1f80d to your computer and use it in GitHub Desktop.
Vega Highlight
{
"description": "Violations by reporting source",
"data": { "url": "/data/case_by_case_source.csv"},
"transform": {
"calculate": [{"field": "highlight", "expr": "datum.case_source == \"Citizen Complaint\" ? \"true\" : \"false\""}]
},
"mark": "bar",
"encoding": {
"y": {"field": "case_source", "type": "ordinal", "sort": {"op": "sum", "field": "cases"}, "axis": {"title": "Case Source"}},
"x": {"field": "cases", "type": "quantitative", "axis": {"title": "# Cases"}},
"color": {
"field": "highlight", "type": "nominal",
"scale": {"range": ["#eeeeee","#659CCA"]},
"legend": false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment