Public
Edited
May 18, 2023
2 forks
Importers
10 stars
Insert cell
Insert cell
treeData = table2Tree(data, attribs, v => d3.mean(v, d => +d.budget))
Insert cell
data
Insert cell
Insert cell
TreeValue(treeData, {
label: (d) => d.name,
value: (d) => +d.value,
width: width - 150,
height: 800
})
Insert cell
Inputs.table(data)
Insert cell
viewof data = dataInput({ initialValue })
Insert cell
initialValue = loadSocrata(url, { progressive: false })
Insert cell
table2Tree = function(data, attribs, value = undefined) {
const valueFn = v =>
value === undefined
? v.length // Default value count nodes
: value instanceof Function // If value is a function just pass it
? value(v)
: d3.sum(v, d => +d[value]); // If value is not a function assume it is an attribute and sum it

return rollupsToTree(
d3.rollups(...[data, valueFn].concat(...attribs.map(a => d => d[a])))
);
}
Insert cell
rollupsToTree = function(rollupsData) {
const makeTreeNode = d => {
let res = {
name: "" + d[0]
};

if (Array.isArray(d[1])) res.children = rollupsToTree(d[1]);
else res.value = d[1];
return res;
};

function rollupsToTree(groupedData) {
if (!groupedData) return;

return groupedData.map(makeTreeNode);
}

return {
name: "",
children: Array.isArray(rollupsData)
? rollupsToTree(rollupsData)
: [{ name: "", value: rollupsData }]
};
}
Insert cell
url = "https://data.sfgov.org/resource/xdgd-c79v.csv"

Insert cell
import { loadSocrata } from "@john-guerra/socrata-load-multiples-pages"
Insert cell
d3 = require("d3-array")
Insert cell
import { Tree } from "@d3/tidy-tree"
Insert cell
import {TreeValue} from "@john-guerra/tree-value"
Insert cell
import { multiAutoSelect } from "@john-guerra/multi-auto-select"
Insert cell
import { dataInput } from "@john-guerra/file-input-with-default-value"
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