Public
Edited
May 15
Insert cell
Insert cell
Plot.plot({
height: 200,
x: {tickFormat: "d", label: null},
y: {label: "Reviews", grid: true},
color: {legend: true},
marks: [
Plot.barY(tidyReviews, {
x: "year",
y: "submissionsNum",
fill: "venue",
})
]
})
Insert cell
reviews = FileAttachment("reviews@4.json").json()
Insert cell
tidyReviews = reviews.reviews.map((r) => ({venue: r.venue, year: r.year, track: r.track, submissionsNum: r.submissions.length}));
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