Public
Edited
Aug 1, 2023
2 forks
3 stars
Insert cell
Insert cell
Insert cell
background_check_data
X
month
Y
total
Color
total
Size
Facet X
Facet Y
Mark
area
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
Insert cell
coursesSpring2023
X
sum
EnrollmentCurrent
Y
Department
Color
#4775de
Size
Facet X
Facet Y
Mark
bar
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
Insert cell
background_check_data = FileAttachment("background_check_data.csv").csv({
typed: true
})
Insert cell
coursesSpring2023 = await FileAttachment("Courses SPRING 2023.csv").csv({
typed: true
})
Insert cell
Array.from(
d3
.rollup(
coursesSpring2023,
(a) => ({
dept: a[0].Department,
enrolled: d3.sum(a, (o) => o.EnrollmentCurrent)
}),
(o) => o.Department
)
.values()
)
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