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": "A diverging stacked dot plot showing the gender and award year of Nobel Prize laureates. If you prefer using squares instead of circles, set the point-mark `shape` to `square` and add `bandPosition: 0.5` to the `y` channel to align the squares with the rule mark. The `size` of the point mark (`sizeSq` param) is calculated as the area of a square, s^2, for consistency with the square shape if used.", | |
| "usermeta": {"author": "Shad Frigui"}, | |
| "title": "Nobel Prize Laureates", | |
| "width": 850, | |
| "height": 150, | |
| "data": { | |
| "url": "https://api.nobelprize.org/2.1/laureates?limit=992", | |
| "format": {"property": "laureates"} | |
| }, |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "data": {"url": "data/cars.json"}, | |
| "transform": [ | |
| { | |
| "joinaggregate": [{"op": "count", "as": "Count"}], | |
| "groupby": ["Cylinders", "Origin"] | |
| }, | |
| { | |
| "joinaggregate": [{"op": "sum", "field": "Count", "as": "OriginCount"}], |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega/v5.json", | |
| "description": "Dataviz by David Bacci: https://www.linkedin.com/in/davbacci/", | |
| "width": 1000, | |
| "background": "#F6F0E6", | |
| "autosize": "pad", | |
| "padding": 25, | |
| "title": "", | |
| "data": [ | |
| { |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "usermeta": {"embedOptions": {"renderer": "svg"}}, | |
| "data": { | |
| "values": [ | |
| { | |
| "label": "Huur woningen (btw onbelast)", | |
| "number": 1, | |
| "type": "o", | |
| "amount": 77855 |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "width": 600, | |
| "data": { | |
| "values": [ | |
| { | |
| "__row__": 0, | |
| "calendar_month_year": "Dec-23", | |
| "concentration_risk_monthly": 0.51 | |
| }, |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega/v5.json", | |
| "description": "A basic bar chart example, with value labels shown upon pointer hover.", | |
| "width": 400, | |
| "height": 200, | |
| "padding": 5, | |
| "data": [ | |
| { | |
| "name": "table", | |
| "values": [ |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega/v5.json", | |
| "description": "A basic bar chart example, with value labels shown upon pointer hover.", | |
| "width": 400, | |
| "height": 200, | |
| "padding": 5, | |
| "data": [ | |
| { | |
| "name": "table", | |
| "values": [ |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "data": { | |
| "values": [ | |
| {"category": "A", "subcategory": "A1", "sales": 100}, | |
| {"category": "A", "subcategory": "A2", "sales": 200}, | |
| {"category": "B", "subcategory": "B1", "sales": 150}, | |
| {"category": "B", "subcategory": "B2", "sales": 50} | |
| ] | |
| }, |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "data": { | |
| "values": [ | |
| {"category": "A", "subcategory": "A1", "sales": 100}, | |
| {"category": "A", "subcategory": "A2", "sales": 200}, | |
| {"category": "B", "subcategory": "B1", "sales": 150}, | |
| {"category": "B", "subcategory": "B2", "sales": 50} | |
| ] | |
| }, |
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
| { | |
| "$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
| "data": { | |
| "values": [ | |
| {"a": "A", "b": 28}, | |
| {"a": "B", "b": 55}, | |
| {"a": "C", "b": 43}, | |
| {"a": "D", "b": 91}, | |
| {"a": "E", "b": 81}, | |
| {"a": "F", "b": 53}, |