Loess Regression
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"url": "data/movies.json"
},
"layer": [
{
"mark": {
"type": "point",
"filled": true
},
"encoding": {
"x": {
"field": "Rotten Tomatoes Rating",
"type": "quantitative"
},
"y": {
"field": "IMDB Rating",
"type": "quantitative"
}
}
},
{
"mark": {
"type": "line",
"color": "firebrick"
},
"transform": [
{
"loess": "IMDB Rating",
"on": "Rotten Tomatoes Rating"
}
],
"encoding": {
"x": {
"field": "Rotten Tomatoes Rating",
"type": "quantitative"
},
"y": {
"field": "IMDB Rating",
"type": "quantitative"
}
}
}
]
}