Quantile-Quantile Plot (QQ Plot)
View this example in the online editor
Vega-Lite JSON Specification
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"url": "data/normal-2d.json"
},
"transform": [
{
"quantile": "u",
"step": 0.01,
"as": [
"p",
"v"
]
},
{
"calculate": "quantileUniform(datum.p)",
"as": "unif"
},
{
"calculate": "quantileNormal(datum.p)",
"as": "norm"
}
],
"hconcat": [
{
"mark": "point",
"encoding": {
"x": {
"field": "unif",
"type": "quantitative"
},
"y": {
"field": "v",
"type": "quantitative"
}
}
},
{
"mark": "point",
"encoding": {
"x": {
"field": "norm",
"type": "quantitative"
},
"y": {
"field": "v",
"type": "quantitative"
}
}
}
]
}