Published
Edited
Aug 18, 2022
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
cleanedData = variantData
.map(d => {
return {
date: d3.utcDay.ceil(d.week_ending),
modelType: d.modeltype,
variant: d.variant,
region: d.usa_or_hhsregion,
ciLow: d.share_low,
ciHigh: d.share_hi,
share: d.share,
}
})
Insert cell
joinedData = cleanedData
// Sort descending by creation date. This will help us filter later
.sort((a, b) => b.creationDate - a.creationDate)
.filter((d, i, arr) => {
// Filter to the Northeast
if (d.region !== 1) return false
// Filter to variants with a non-zero share
if (d.share === 0) return false
return true
})
.filter((d, i, arr) => {
// if there's an earlier (i.e., with a later creation date) entry for the same date
// and variant, discard this one
if (
arr.slice(0, i).find(f => d3.timeDay.count(f.date, d.date) === 0 && f.variant === d.variant)
) return false
// Otherwise, we're good!
return true
})
// Join to wastewater data
.map(vd => {
const w = wastewaterData.find(wd => d3.timeDay.count(wd.date, vd.date) === 0 && wd.system === wastewaterSystem)
return {
...vd,
...w,
}
})
// Sort by date
.sort((a, b) => a.date - b.date)
// Filter to after start date
.filter(d => d3.utcDay.count(startDate, d.date) > 0)
// Filter to dates we have wastewater data for
.filter(d => !!d.concentration)

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