Gallery / Distributions
Sparse Q–Q cloud
Twelve large sample quantiles vs theoretical normal — the scatter mark that reads at index thumbnail size.
Source
Svelte, builder, JSON
<script lang="ts">
import { GeomQq, 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="Sparse Q–Q cloud"
subtitle="Twelve sample quantiles against the theoretical normal"
x="Theoretical quantile"
y="Sample quantile"
/>
<GeomQq size={6} alpha={0.95} aes={{ color: { value: "#1a202c" } }} />
</GGPlot>
Meta
Details
- Family
- Distributions
- Source
qq/cloud- Rendering
- SVG
- Techniques


