Public
Edited
Jul 6, 2023
Insert cell
Insert cell
olympians
Insert cell
function height(athlete) {
return athlete.height;
}
Insert cell
height(olympians[99])
Insert cell
maxHeight = d3.max(olympians, height)
Insert cell
minHeight = d3.min(olympians, height)
Insert cell
tallestIndex = d3.maxIndex(olympians, height)
Insert cell
olympians[tallestIndex].name
Insert cell
maxWeight = d3.max(olympians, d => d.weight)
Insert cell
maxMedals = d3.max(olympians, d => d.gold + d.silver + d.bronze)
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