Public
Edited
Jan 26, 2024
Insert cell
Insert cell
Insert cell
Insert cell
data101 = FileAttachment("data101.xlsx").xlsx()
Insert cell
nycData = data101.sheet(0, { headers: true })
Insert cell
Inputs.table(nycData)
Insert cell
Insert cell
Insert cell
olympians = FileAttachment("olympians.csv").csv({ typed: true })
Insert cell
Inputs.table(olympians)
Insert cell
aggregate.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
workbook = FileAttachment("Untitled.xlsx").xlsx()
Insert cell
workbook.sheetNames
Insert cell
data = workbook.sheet(0, {
headers: false,
// range: "A1:J10"
})
Insert cell
data
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
marks: [
Plot.barY(data, {x: "E", y: "A"}),

]
})
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