Published
Edited
Sep 21, 2021
55 forks
40 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
hiringData = (await FileAttachment("payroll.csv").csv()).map(autoTypeExcel)
Insert cell
Insert cell
Insert cell
Insert cell
mrrActual = (await FileAttachment("mrrActual@1.csv").csv()).map(autoTypeExcel)
Insert cell
Insert cell
Insert cell
Insert cell
domain = [new Date(Date.UTC(2021, 0, 1)), new Date(Date.UTC(2022, 0, 1))]
Insert cell
asOf = new Date(Date.UTC(2021, 4, 25))
Insert cell
Insert cell
Insert cell
import {viewof hiring, payroll, summary as hiringSummary}
with {domain, asOf, hiringData as data}
from "433c356a8f929477"
Insert cell
Insert cell
mrr = mrrTarget.diff.map(({date, value}, i) => ({date, target: value, actual: mrrActual[i]?.value}))
Insert cell
mrrStart = mrrActual[0].value
Insert cell
import {chart as mrrSpline, flow as mrrTarget}
with {domain as timeDomain, mrrStart as start}
from "7fc65adc09109fe5"
Insert cell
Insert cell
vc = [{date: new Date(cashDate), value: cash * 1000}]
Insert cell
totalActual = rollupByMonth([vc, payroll.diff, mrrActual])
.filter(({date}) => date <= asOf)
Insert cell
totalActualCum = cumsum(totalActual)
Insert cell
totalTarget = rollupByMonth([vc, payroll.diff, mrrTarget.diff])
Insert cell
totalTargetCum = cumsum(totalTarget)
Insert cell
totalTargetActuals = zip({target: totalTargetCum, actual: totalActualCum})
Insert cell
import {TargetsVsActuals} from "@observablehq/targets-vs-actuals"
Insert cell
import {Table} from "@observablehq/table-validator"
Insert cell
import {longMonth, dateFormat, autoTypeExcel, rollupByMonth, zip, cumsum, zero}
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