Gallery / Points & scatter
point
Two measures coloured by region
Scatter with a discrete colour when geography or group is the third channel.
Source
Svelte, builder, JSON
<script lang="ts">
import {
GeomPoint,
GGPlot,
GuideLegend,
Inspect,
Labs,
ScaleColorDiscrete,
ThemeFew,
} from "@ggts-sh/svelte";
import { guerry } from "./data.js";
</script>
<GGPlot
data={guerry}
aes={{ x: "literacy", y: "crimePersons", color: "region" }}
width={640}
height={400}
>
<GeomPoint size={3} />
<ScaleColorDiscrete scheme="observable10" />
<ThemeFew />
<GuideLegend channel="color" focus />
<Labs
title="Two measures coloured by region"
subtitle="Literacy and crime by French department"
x="Literate conscripts (%)"
y="Population per crime against persons"
color="Region"
/>
<Inspect mode="xy" pin maxDistance={24} />
</GGPlot>
Meta
Details
- Family
- Points & scatter
- Source
point/scatter-color- Rendering
- SVG
- Techniques


