Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
newdata = d3
.csvParse(await FileAttachment("apw-2019@1.csv").text(), d3.autoType)
.filter(c => c.scaledScore > 0)
Insert cell
Insert cell
Insert cell
y3 = newdata.filter(c => c.yg == 'year 3').map(c => c.scaledScore)
Insert cell
y4 = newdata.filter(c => c.yg == 'year 4').map(c => c.scaledScore)
Insert cell
y5 = newdata.filter(c => c.yg == 'year 5').map(c => c.scaledScore)
Insert cell
y6 = newdata.filter(c => c.yg == 'year 6').map(c => c.scaledScore)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
y3density = kde(epanechnikov(bandwidth), thresholds, y3)
Insert cell
y4density = kde(epanechnikov(bandwidth), thresholds, y4)
Insert cell
y5density = kde(epanechnikov(bandwidth), thresholds, y5)
Insert cell
y6density = kde(epanechnikov(bandwidth), thresholds, y6)
Insert cell
means = d6.rollups(
newdata,
v => ({
mean: d3.mean(v, d => d.scaledScore),
sd: d3.deviation(v, d => d.scaledScore),
n: v.length
}),
d => d.yg
)
Insert cell
tbl = means.map(m => ({
'year group': m[0],
n: m[1].n,
mean: m[1].mean,
sd: m[1].sd
}))
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
d6 = require("d3-array@^2.2")
Insert cell
import { table } from "@tmcw/tables/2"
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