Public
Edited
Nov 2, 2021
1 fork
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
chart_decon1 = {
// Make height a fraction of width
const height = 0.4 * width;

// Create the SVG space into which we will append our visual elements
const svg = d3
.create("svg")
.attr("width", width) // Observable built-in
.attr("height", height) // Fraction of width
.attr("viewBox", [-width / 2, -height / 2, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");

return svg.node();
}
Insert cell
Insert cell
Insert cell
chart_decon2 = {
// Make height a fraction of width
const height = 0.4 * width;

// Create the SVG space into which we will append our visual elements
const svg = d3
.create("svg")
.attr("width", width) // Observable built-in
.attr("height", height) // Fraction of width
.attr("viewBox", [-width / 2, -height / 2, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");

// Add the nodes and edges from Book 1
const nodes = book1.nodes.map(d => Object.create(d));
const links = book1.links.map(d => Object.create(d));

// Create the line marks for the edges (links)
const link = svg
.append("g")
.attr("stroke", "#999") // link stroke color
.attr("stroke-opacity", 0.6) // link stroke opacity
.attr("stroke-width", 1.5) // given d in links, returns a stroke width in pixels
.attr("stroke-linecap", "round") // link stroke linecap
.selectAll("line")
.data(links)
.join("line");

// Create the circle marks for the nodes
const node = svg
.append("g")
.attr("fill", "steelblue") // node stroke fill (if not using a group color encoding)
.attr("stroke", "#fff") // node stroke color
.attr("stroke-opacity", 1) // node stroke opacity
.attr("stroke-width", 1.5) // node stroke width, in pixels
.selectAll("circle")
.data(nodes, d => d.id) // id is the character's name
.join("circle")
.attr("r", 5); // node radius, in pixels
//.call(drag(simulation));

return svg.node();
}
Insert cell
Insert cell
Insert cell
chart_decon3 = {
// Make height a fraction of width
const height = 0.4 * width;

// Add the nodes and edges from Book 1
const nodes = book1.nodes.map(d => Object.create(d));
const links = book1.links.map(d => Object.create(d));

// Construct the forces.
const forceNode = d3.forceManyBody(); // .strength(-1000)
const forceLink = d3
.forceLink(links)
.id(d => d.id)
.distance(100);

// Initialize the force simulation.
const simulation = d3
.forceSimulation(nodes)
.force("link", forceLink)
.force("charge", forceNode)
.force("center", d3.forceCenter())
.on("tick", ticked);

const svg = d3
.create("svg")
.attr("width", width) // Observable built-in
.attr("height", height) // Fraction of width
.attr("viewBox", [-width / 2, -height / 2, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");

// Create the line marks for the edges (links)
const link = svg
.append("g")
.attr("stroke", "#999") // link stroke color
.attr("stroke-opacity", 0.6) // link stroke opacity
.attr("stroke-width", 1.5) // given d in links, returns a stroke width in pixels
.attr("stroke-linecap", "round") // link stroke linecap
.selectAll("line")
.data(links)
.join("line");

// Create the circle marks for the nodes
const node = svg
.append("g")
.attr("fill", "steelblue") // node stroke fill (if not using a group color encoding)
.attr("stroke", "#fff") // node stroke color
.attr("stroke-opacity", 1) // node stroke opacity
.attr("stroke-width", 1.5) // node stroke width, in pixels
.selectAll("circle")
.data(nodes, d => d.id) // id is the character's name
.join("circle")
.attr("r", 5); // node radius, in pixels
//.call(drag(simulation));

// Add a SVG title element to serve as a quick tooltip
// Source: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title
node.append("title").text(titleTooltip); // Alternative: d => d.id (id is the character's name)

// Adjust the positions of the nodes and links each time the simulation "ticks" forward through time
function ticked() {
link
.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y);

node.attr("cx", d => d.x).attr("cy", d => d.y);
}

// Source: https://observablehq.com/@observablehq/invalidation
// `invalidation` is promise that resolves when the current cell is re-evaluated:
// when the cell’s code changes,
// when it is run using Shift-Enter,
// or when a referenced input changes
invalidation.then(() => simulation.stop());

return svg.node();
}
Insert cell
titleTooltip = d => `Name: ${d.id}
Subtype: ${d.subtype}
Gender: ${d.gender}`
Insert cell
Insert cell
Insert cell
chart_decon4 = {
// Make height a fraction of width
const height = 0.4 * width;

// Add the nodes and edges from Book 1
const nodes = book1.nodes.map(d => Object.create(d));
const links = book1.links.map(d => Object.create(d));

// Construct the forces.
const forceNode = d3.forceManyBody(); // .strength(-1000)
const forceLink = d3
.forceLink(links)
.id(d => d.id)
.distance(100);

// Initialize the force simulation.
const simulation = d3
.forceSimulation(nodes)
.force("link", forceLink)
.force("charge", forceNode)
.force("center", d3.forceCenter())
.on("tick", ticked); // `ticked` is grey because it's defined below

const svg = d3
.create("svg")
.attr("width", width) // Observable built-in
.attr("height", height) // Fraction of width
.attr("viewBox", [-width / 2, -height / 2, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;");

// Create the line marks for the edges (links)
const link = svg
.append("g")
.attr("stroke", "#999") // link stroke color
.attr("stroke-opacity", 0.6) // link stroke opacity
.attr("stroke-width", 1.5) // given d in links, returns a stroke width in pixels
.attr("stroke-linecap", "round") // link stroke linecap
.selectAll("line")
.data(links)
.join("line");

// Create the circle marks for the nodes
const node = svg
.append("g")
.attr("fill", "steelblue") // node stroke fill (if not using a group color encoding)
.attr("stroke", "#fff") // node stroke color
.attr("stroke-opacity", 1) // node stroke opacity
.attr("stroke-width", 1.5) // node stroke width, in pixels
.selectAll("circle")
.data(nodes)
.join("circle")
.attr("r", 5) // node radius, in pixels
.call(draggable(simulation)); // `draggable` is grey because it's defined below

// Add a SVG title element to serve as a quick tooltip
// Source: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title
node.append("title").text(titleTooltip); // Simple alternative (id is the character's name): d => d.id

// Adjust the positions of the nodes and links each time the simulation "ticks" forward through time
function ticked() {
link
.attr("x1", d => d.source.x)
.attr("y1", d => d.source.y)
.attr("x2", d => d.target.x)
.attr("y2", d => d.target.y);

node.attr("cx", d => d.x).attr("cy", d => d.y);
}

// Source: https://github.com/d3/d3-drag
// Observable drag collection: https://observablehq.com/collection/@d3/d3-drag
function draggable(simulation) {
function dragstarted(event) {
if (!event.active) simulation.alphaTarget(0.3).restart();
event.subject.fx = event.subject.x;
event.subject.fy = event.subject.y;
}

function dragged(event) {
event.subject.fx = event.x;
event.subject.fy = event.y;
}

function dragended(event) {
if (!event.active) simulation.alphaTarget(0);
event.subject.fx = null;
event.subject.fy = null;
}

return d3
.drag()
.on("start", dragstarted)
.on("drag", dragged)
.on("end", dragended);
}

// Source: https://observablehq.com/@observablehq/invalidation
// `invalidation` is promise that resolves when the current cell is re-evaluated:
// when the cell’s code changes,
// when it is run using Shift-Enter,
// or when a referenced input changes
invalidation.then(() => simulation.stop());

return svg.node();
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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