Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Sep 23, 2024
1 parent c6ecff7 commit 0b38b53
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions site/docs/_assets/plots/errorBars.vg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"url": "https://quafadas.github.io/vecxt/benchmarks/benchmark_history.json"
},
"encoding": {"y": {"field": "variety", "type": "ordinal"}},
"layer": [
{
"mark": {"type": "point", "filled": true},
"encoding": {
"x": {
"aggregate": "mean",
"field": "yield",
"type": "quantitative",
"scale": {"zero": false},
"title": "Barley Yield"
},
"color": {"value": "black"}
}
},
{
"mark": {"type": "errorbar", "extent": "ci"},
"encoding": {
"x": {"field": "yield", "type": "quantitative", "title": "Barley Yield"}
}
}
]
}

0 comments on commit 0b38b53

Please sign in to comment.