Public
Edited
Oct 11, 2024
Importers
NAEP Internship Alumni Data
NAEP Internship Alumni Map
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
internInfo = FileAttachment(
"NAEP Intern_Program Information_Tables@5.csv"
).csv()
Insert cell
Insert cell
applicantsByState = {
const original = await FileAttachment("number_of_applicants@8.csv").csv();
original.forEach((d) => {
const stateName = d.State.trim();
const state = stateByFip.find(
(element) => element.name.toLowerCase() === stateName.toLowerCase()
);
d.State = stateName;
d.number_of_applicants = parseInt(d.number_of_applicants);
d["fip"] = state.fip;
d["abbreviation"] = state.abbreviation;
d["number_of_interns"] = 0;
});
return original;
}
Insert cell
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