Skip to content

Commit

Permalink
chore: update examples [CI]
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions Bot committed Aug 9, 2022
1 parent 97d0543 commit 457cc6f
Show file tree
Hide file tree
Showing 3 changed files with 121 additions and 0 deletions.
Binary file added examples/compiled/bar_grouped_thin.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions examples/compiled/bar_grouped_thin.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
120 changes: 120 additions & 0 deletions examples/compiled/bar_grouped_thin.vg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"background": "white",
"padding": 5,
"width": 500,
"height": 200,
"style": "cell",
"data": [
{
"name": "source_0",
"url": "data/movies.json",
"format": {"type": "json"},
"transform": [
{
"type": "aggregate",
"groupby": ["Director", "Title"],
"ops": ["mean"],
"fields": ["Rotten Tomatoes Rating"],
"as": ["mean_Rotten Tomatoes Rating"]
}
]
}
],
"marks": [
{
"name": "marks",
"type": "rect",
"style": ["bar"],
"from": {"data": "source_0"},
"encode": {
"update": {
"fill": [
{
"test": "datum['IMDB Rating'] === null || datum['Rotten Tomatoes Rating'] === null",
"value": "#aaa"
},
{"value": "#4c78a8"}
],
"ariaRoleDescription": {"value": "bar"},
"description": {
"signal": "\"Director: \" + (isValid(datum[\"Director\"]) ? datum[\"Director\"] : \"\"+datum[\"Director\"]) + \"; Mean of Rotten Tomatoes Rating: \" + (format(datum[\"mean_Rotten Tomatoes Rating\"], \"\")) + \"; Title: \" + (isValid(datum[\"Title\"]) ? datum[\"Title\"] : \"\"+datum[\"Title\"])"
},
"x": {
"scale": "x",
"field": "Director",
"offset": {"scale": "xOffset", "field": "Title"}
},
"width": {"scale": "xOffset", "band": 1},
"y": [
{
"test": "!isValid(datum[\"mean_Rotten Tomatoes Rating\"]) || !isFinite(+datum[\"mean_Rotten Tomatoes Rating\"])",
"field": {"group": "height"}
},
{"scale": "y", "field": "mean_Rotten Tomatoes Rating"}
],
"y2": {"scale": "y", "value": 0}
}
}
}
],
"scales": [
{
"name": "x",
"type": "band",
"domain": {"data": "source_0", "field": "Director", "sort": true},
"range": [0, {"signal": "width"}],
"paddingInner": 0.2,
"paddingOuter": 0.2
},
{
"name": "y",
"type": "linear",
"domain": {"data": "source_0", "field": "mean_Rotten Tomatoes Rating"},
"range": [{"signal": "height"}, 0],
"nice": true,
"zero": true
},
{
"name": "xOffset",
"type": "band",
"domain": {"data": "source_0", "field": "Title", "sort": true},
"range": [0, {"signal": "bandwidth('x')"}]
}
],
"axes": [
{
"scale": "y",
"orient": "left",
"gridScale": "x",
"grid": true,
"tickCount": {"signal": "ceil(height/40)"},
"domain": false,
"labels": false,
"aria": false,
"maxExtent": 0,
"minExtent": 0,
"ticks": false,
"zindex": 0
},
{
"scale": "x",
"orient": "bottom",
"grid": false,
"title": "Director",
"labelAlign": "right",
"labelAngle": 270,
"labelBaseline": "middle",
"zindex": 0
},
{
"scale": "y",
"orient": "left",
"grid": false,
"title": "Mean of Rotten Tomatoes Rating",
"labelOverlap": true,
"tickCount": {"signal": "ceil(height/40)"},
"zindex": 0
}
]
}

0 comments on commit 457cc6f

Please sign in to comment.