Public
Edited
Nov 15, 2022
Importers
10 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
timeWindow = d3.timeFormat('%A')
Insert cell
Insert cell
timeWindow(new Date)
Insert cell
Insert cell
seasonallyAdjustedMTA = seasonalityIndex(sampleData, "Value", "Date", timeWindow)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
seasonalityIndex = (data, valueKey, dateKey, seasonalityDateFormat) => {
/*
seasonalityDateFormat supports d3.utcFormat or d3.timeFormats
*/
const distinctUnits = Array.from(new Set(data.map(d => d[dateKey]).map(d => seasonalityDateFormat(d))));
const unitMeans = d3.rollup(data, v => d3.mean(v, d => d[valueKey]), d => seasonalityDateFormat(d[dateKey]));
const overallAverage = d3.mean(Array.from(unitMeans), d => d[1]);
const unitSeasonalityIndex = d3.rollup(unitMeans, v => v[0][1] / overallAverage, d => d[0]);

return data.map(d => {
const unit = seasonalityDateFormat(d[dateKey])
const index = unitSeasonalityIndex.get(unit)
return {
...d,
seasonality: d[valueKey] / index
}
});
}
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

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