Line Chart with Confidence Interval Band
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {"url": "data/cars.json"},
"encoding": {
"x": {
"field": "Year",
"timeUnit": "year"
}
},
"layer": [
{
"mark": {"type": "errorband", "extent": "ci"},
"encoding": {
"y": {
"field": "Miles_per_Gallon",
"type": "quantitative",
"title": "Mean of Miles per Gallon (95% CIs)"
}
}
},
{
"mark": "line",
"encoding": {
"y": {
"aggregate": "mean",
"field": "Miles_per_Gallon"
}
}
}
]
}