Published
Edited
Sep 21, 2021
35 forks
Importers
35 stars
Insert cell
Insert cell
Insert cell
Insert cell
data = (await FileAttachment("cbo-targets-actuals.csv").csv()).map(autoTypeExcel)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
TargetsVsActuals = (data, {title, x, target, actual, ...options} = {}) =>
Plot.plot({
height: 250,
x: {tickFormat: dateFormat, label: null},
y: {label: title},
color: {
range: ["#b44646", "steelblue"],
domain: [-1e-6, 1e-6],
clamp: true
},
...options,
marks: [
HollowBarY(data, {x, target, actual}), // includes blue bar, outline, and label
Plot.ruleY([0]) // baseline
]
})
Insert cell
Insert cell
HollowBarY = (data, {x, target, actual} = {}) => {
// Calculate percentage
data = data.map(d => ({...d, percent: maybeAccessor(actual)(d) / maybeAccessor(target)(d)}))
return [
// Blue bar for actuals
Plot.barY(data, {x, y: actual, fill: actual, insetLeft: 0.5, insetRight: 0.5}),

// Hollow bar for targets
Plot.barY(data, {x, y: target, stroke: "black", fill: "none"}),

// Percentage text, below and white if miss
Plot.text(data.filter(d => d.percent < 1), {
x,
y: actual,
text: d => pct(d.percent),
fill: "white",
dy: 12,
}),

// Percentage text, above and black if hit
Plot.text(data.filter(d => d.percent > 1), {
x,
y: actual,
text: d => pct(d.percent),
dy: -4
})
]
}
Insert cell
maybeAccessor = value => typeof value === "string" ? d => d[value] : value;
Insert cell
pct = d3.format(".0%")
Insert cell
import {Table} from "@observablehq/table-validator"
Insert cell
import {dateFormat, autoTypeExcel} from "@observablehq/cash-flow"
Insert cell
import {toc} from "@observablehq/templates-table-of-instructions"
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more