Public
Edited
Apr 25, 2023
Insert cell
Insert cell
Insert cell
mta = FileAttachment("mta.csv").csv({typed: true})
Insert cell
Insert cell
columns = mta.columns
Insert cell
Object.keys(mta[0])
// If you're not using a CSV, this will work for any tabular data. Get the keys from the first record
Insert cell
Insert cell
viewof checkboxes = Inputs.checkbox(columns, {label: "Select some", value: ["Date", "Subways: Total Estimated Ridership"]})
Insert cell
selectedData = mta.map(d => {
const returnObject = {};
checkboxes.forEach(e => returnObject[e] = d[e]);
return returnObject
})
Insert cell
selectedData
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Insert cell
Insert cell
filters
Insert cell
Insert cell
filteredData = selectedData.filter(d => {
const filter = checkboxes.map((e, i) => {
return d[e] >= filters[i]
})
return filter.includes(false) ? false : true
})
Insert cell
filteredData
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Insert cell
mta.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more