Published
Edited
Dec 24, 2020
3 forks
20 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
data = {
const root = {};
const map = new Map([[".", root]]);
function get(path) {
if (map.has(path)) return map.get(path);
const i = path.lastIndexOf("/");
const node = {name: path.substring(i + 1)};
const parent = get(path.substring(0, i));
if (parent.children) parent.children.push(node);
else parent.children = [node];
map.set(path, node);
return node;
}
for (const [value, path] of source
.trim().split(/\r?\n/g)
.map(line => line.trim().split(/\s+/g))
.filter(([, path]) => path !== "total")) {
get(path).value = +value;
}
return root;
}
Insert cell
partition = data => {
const root = d3.hierarchy(data)
.sum(d => d.children ? 0 : isNaN(d.value) ? 1 : d.value)
.sort(sorted
? (a, b) => d3.descending(!!a.children, !!b.children) || d3.ascending(b.value, a.value) || d3.ascending(a.data.name, b.data.name)
: (a, b) => d3.descending(!!a.children, !!b.children) || d3.ascending(a.data.name, b.data.name));
return d3.partition().size([2 * Math.PI, radius])(root);
}
Insert cell
arc = d3.arc()
.startAngle(d => d.x0)
.endAngle(d => d.x1)
.padAngle(d => Math.max(0, Math.min((d.x1 - d.x0) / 2 - 0.001, 0.001)))
.padRadius(radius / 2)
.innerRadius(d => d.y0)
.outerRadius(d => d.y1 - 1)
Insert cell
format = d3.format(",d")
Insert cell
width = Math.max(954, 128 * Math.cbrt(d3.hierarchy(data).count().value))
Insert cell
height = width
Insert cell
radius = Math.min(width, height) / 2
Insert cell
fileColor = "#e4e4e4"
Insert cell
folderColor = "#aaa"
Insert cell
d3 = require("d3@5")
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