A combined visualization that overlays individual data points (strip plot) on top of a box plot. This provides both summary statistics (median, quartiles, whiskers) and visibility of the actual data distribution.

# anyplot.ai
# cat-box-strip: Box Plot with Strip Overlay
# Library: makie 0.21.9 | Julia 1.11.9
# Quality: 82/100 | Created: 2026-09-02
using CairoMakie
using Colors
using Random
using Statistics
Random.seed!(42)
# --- Theme tokens -----------------------------------------------------------
const THEME = get(ENV, "ANYPLOT_THEME", "light")
const PAGE_BG = THEME == "light" ? colorant"#FAF8F1" : colorant"#1A1A17"
const INK = THEME == "light" ? colorant"#1A1A17" : colorant"#F0EFE8"
const INK_SOFT = THEME == "light" ? colorant"#4A4A44" : colorant"#B8B7B0"
const IMPRINT_PALETTE = [
colorant"#009E73", colorant"#C475FD", colorant"#4467A3", colorant"#BD8233",
colorant"#AE3030", colorant"#2ABCCD", colorant"#954477", colorant"#99B314",
]
# --- Data ---------------------------------------------------------------
# Reaction time (ms) across four caffeine-dose groups in a lab experiment
groups = ["Placebo", "50mg", "100mg", "200mg"]
group_means = [420.0, 390.0, 355.0, 345.0]
group_sds = [55.0, 48.0, 42.0, 50.0]
group_sizes = [90, 90, 90, 90]
category = String[]
value = Float64[]
group_index = Int[]
for (i, (g, mu, sigma, n)) in enumerate(zip(groups, group_means, group_sds, group_sizes))
append!(category, fill(g, n))
append!(value, mu .+ sigma .* randn(n))
append!(group_index, fill(i, n))
end
# --- Plot -----------------------------------------------------------------
fig = Figure(
size = (1600, 900),
fontsize = 14,
backgroundcolor = PAGE_BG,
)
ax = Axis(
fig[1, 1];
title = "cat-box-strip · julia · makie · anyplot.ai",
titlesize = 20,
titlecolor = INK,
xlabel = "Caffeine Dose",
ylabel = "Reaction Time (ms)",
xlabelsize = 14,
ylabelsize = 14,
xlabelcolor = INK,
ylabelcolor = INK,
xticklabelsize = 12,
yticklabelsize = 12,
xticklabelcolor = INK_SOFT,
yticklabelcolor = INK_SOFT,
xtickcolor = INK_SOFT,
ytickcolor = INK_SOFT,
xticks = (1:length(groups), groups),
backgroundcolor = PAGE_BG,
topspinevisible = false,
rightspinevisible = false,
leftspinecolor = INK_SOFT,
bottomspinecolor = INK_SOFT,
xgridvisible = false,
ygridcolor = RGBAf(INK.r, INK.g, INK.b, 0.15),
)
box_colors = [RGBAf(c.r, c.g, c.b, 0.35) for c in IMPRINT_PALETTE[1:length(groups)]]
boxplot!(
ax, group_index, value;
color = box_colors[group_index],
strokecolor = IMPRINT_PALETTE[1:length(groups)],
strokewidth = 1.5,
width = 0.55,
show_outliers = false,
whiskerwidth = 0.4,
gap = 0.0,
)
jitter = (rand(length(value)) .- 0.5) .* 0.28
scatter!(
ax, group_index .+ jitter, value;
color = IMPRINT_PALETTE[1:length(groups)][group_index],
markersize = 9,
strokewidth = 0,
alpha = 0.45,
)
# Median-trend line: a subtle focal cue for the dose-response trend across groups
group_medians = [median(value[group_index .== i]) for i in 1:length(groups)]
trend_color = RGBAf(INK.r, INK.g, INK.b, 0.55)
lines!(ax, 1:length(groups), group_medians; color = trend_color, linewidth = 2, linestyle = :dash)
scatter!(ax, 1:length(groups), group_medians; color = trend_color, markersize = 11, marker = :diamond, strokewidth = 0)
# --- Save -------------------------------------------------------------------
save("plot-$(THEME).png", fig; px_per_unit = 2)
Runnable source as JSON, for any HTTP client: https://api.anyplot.ai/specs/cat-box-strip/makie/code. Any spec id and library id listed in llms-full.txt fit the same URL shape; every URL below is complete and callable.
{
"spec_id": "cat-box-strip",
"language": "julia",
"library": "makie",
"page": "https://anyplot.ai/cat-box-strip/julia/makie",
"hub": "https://anyplot.ai/cat-box-strip",
"code_json": "https://api.anyplot.ai/specs/cat-box-strip/makie/code",
"spec_json": "https://api.anyplot.ai/specs/cat-box-strip",
"render_light_png": "https://storage.googleapis.com/anyplot-images/plots/cat-box-strip/julia/makie/plot-light.png",
"render_dark_png": "https://storage.googleapis.com/anyplot-images/plots/cat-box-strip/julia/makie/plot-dark.png",
"quality_score": 82.0,
"license": "MIT",
"guide": "https://anyplot.ai/llms.txt"
}Part of Box Plot with Strip Overlay on anyplot.ai.