Public
Edited
Dec 5, 2022
Insert cell
Insert cell
data = d3.tsv("https://aaizemberg.github.io/datos/itba/notas.tsv", d3.autoType)
Insert cell
d3.median(data, d => d.nota)
Insert cell
d3.mean(data, d => d.nota)
Insert cell
Plot.plot({
marks: [
Plot.barX(data, {x: "nota", y: "alumno", sort: {y: "x"}, fill: "nota"}),
Plot.ruleX([0])
],
width: 1000,
marginLeft:200,
color: {
type: "linear",
scheme: "viridis",
legend: true,
domain: [5, 8],
range: [0, 1]
}
})
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more