Gallery / Points & scatter
point
Flavor against aroma in cupping scores
Quantile lines through coffee cupping scores. Use this when a mean smooth hides how the spread of y moves with x.
Source
Svelte, builder, JSON
<script lang="ts">
import {
GeomPoint,
GeomQuantile,
GGPlot,
Inspect,
Labs,
ThemeClassic,
} from "@ggts-sh/svelte";
import { coffeeRatings } from "./data.js";
</script>
<GGPlot
data={coffeeRatings}
aes={{ x: "aroma", y: "flavor" }}
width={640}
height={400}
>
<GeomPoint alpha={0.3} size={2} />
<GeomQuantile linewidth={1.4} />
<ThemeClassic />
<Labs
title="Flavor against aroma in cupping scores"
subtitle="Lower quartile, median, and upper quartile of flavor as aroma rises"
x="Aroma"
y="Flavor"
/>
<Inspect mode="xy" pin maxDistance={24} />
</GGPlot>
Meta
Details
- Family
- Points & scatter
- Source
point/quantile-lines- Rendering
- SVG
- Techniques


