Gallery / Points & scatter
point
How the Armada was loaded
Ten squadrons of 1588 by ships and men aboard. Ten unordered categories are exactly what an even walk around the colour wheel is for.

Source
Svelte, builder, JSON
<script lang="ts">
import {
GeomPoint,
GGPlot,
Labs,
ScaleColorHue,
ThemeMinimal,
} from "@ggsvelte/svelte";
import { armadaSquadrons } from "./data.js";
</script>
<GGPlot
data={armadaSquadrons}
aes={{ x: "ships", y: "men", color: "squadron" }}
width={640}
height={400}
>
<ThemeMinimal />
<ScaleColorHue />
<Labs
title="How the Armada was loaded"
subtitle="Ten squadrons, ships against men aboard; the galleys carried theirs in four hulls"
x="Ships"
y="Soldiers and sailors"
color="Squadron"
/>
<GeomPoint size={5} />
</GGPlot>
Meta
Details
- Family
- Points & scatter
- Source
point/hue-discrete- Rendering
- SVG
- Techniques


