Last active
August 24, 2016 17:28
-
-
Save milafrerichs/6a8e190785cde0fe7e5ecef0c2d1f80d to your computer and use it in GitHub Desktop.
Vega Highlight
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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