Gallery / Distributions
qq_line
Q–Q reference line
Thick line through the sample/theoretical quartile match — the mark that reads at index thumbnail size.
Source
Svelte, builder, JSON
<script lang="ts">
import { GeomQqLine, GGPlot, Labs, ThemeMinimal } from "@ggsvelte/svelte";
import { shortSample } from "./data.js";
</script>
<GGPlot data={shortSample} aes={{ sample: "value" }} width={640} height={400}>
<ThemeMinimal />
<Labs
title="Q–Q reference line"
subtitle="Line through the sample/theoretical quartile match"
x="Theoretical quantile"
y="Sample quantile"
/>
<GeomQqLine linewidth={3.2} alpha={1} aes={{ color: { value: "#1a202c" } }} />
</GGPlot>
Meta
Details
- Family
- Distributions
- Source
qq_line/match- Rendering
- SVG
- Techniques


