Published
Edited
Sep 12, 2021
3 forks
12 stars
Insert cell
Insert cell
Plot.plot({
marks: [
Plot.link(nodes, {
x1: "x",
y1: "y",
x2: d => d.parent.data.name ? d.parent.x : d.x,
y2: d => d.parent.data.name ? d.parent.y : d.y,
stroke: "#eee",
}),
Plot.dot(nodes, { x: "x", y: "y", fill: "rootId", r: 3 }),
// Plot.rect(nodes, {
// x1: d => d.x - .005,
// y1: "y",
// x2: d => d.x + .006,
// y2: d => d.y + 0.2,
// // x2: d => d.parent.data.name ? d.parent.x : d.x,
// // y2: d => d.parent.data.name ? d.parent.y : d.y,
// stroke: "rootId",
// }),
Plot.text(nodes, {
x: "x",
y: "y",
text: (d) => d.data.name,
textAnchor: "start",
// rotate: (d) => (d.depth == 1 ? 0 : 90),
rotate: 90,
dx: 5,
fill: "rootId",
fontSize: 12
})
],
x: { axis: false },
y: { axis: false, reverse: true },
// color: { legend: true },
width: 1250,
// marginRight: 20,
marginBottom: 180,
height: 420,
inset: 20,
// facet: {
// data: nodes,
// x: "rootId"
// }
})
Insert cell
tree = d3.tree()(d3.hierarchy(data).count())
Insert cell
nodes = {
let nodes = tree.descendants().filter(d => d.data.name)
nodes.forEach(d => {
if(d.depth === 1) {
d.rootId = d.data.name
} else {
let a = d
while(a.parent.depth > 0) {
a = a.parent
}
d.rootId = a.data.name
}
})
return nodes
}
Insert cell
Insert cell
Insert cell
function treeify(source) {
const parents = [];
const nodes = source.trim().split(/\n/g);
parents.push({children: []});
for (let i = 0, n = nodes.length; i < n; ++i) {
const depth = nodes[i].match(/^\t*/)[0].length;
const parent = parents[depth];
if (!parent.children) parent.children = [];
parent.children.push(parents[depth + 1] = {name: nodes[i].slice(depth)});
}
return parents[0];
}
Insert cell
// nodes = tree.descendants()
Insert cell
partition = data => d3.partition()
.size([2 * Math.PI, radius])
(d3.hierarchy(data).count())
Insert cell
color = d3.scaleOrdinal().range(d3.quantize(d3.interpolateRainbow, data.children.length + 1))
Insert cell
Insert cell
Insert cell
Insert cell
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