Public
Edited
Feb 2, 2023
Insert cell
Insert cell
height = 100

Insert cell
maxLeafWidth = 40
Insert cell
// convenience function to draw a row of leaves with various options
function drawRowOfLeaves(showPoints=false, rotate=false, curveFunction=d3.curveNatural) {
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);

// get initial sizes from inputs

let x = 30;
while (x < width) {
drawLeaf(x, svg, showPoints, rotate, curveFunction);
x += maxLeafWidth * 1.5;
}
return svg.node();
}
Insert cell
// draw some leaves
drawRowOfLeaves()
Insert cell
Insert cell
// draw leaves and show the points used to draw them
drawRowOfLeaves(true)
Insert cell
Insert cell
function plusOrMinus(x) {
return randomNumBetween(x, -x);
}
Insert cell
function cointoss() {
// randomly return true or false; based on https://stackoverflow.com/a/60322877/9706217
return Math.random() < 0.5;
}
Insert cell
Insert cell
Insert cell
chartPoints = {
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height + 10);

drawLeaf(30, svg, true);

return svg.node()
}
Insert cell
Insert cell
// don't show points, do rotate
drawRowOfLeaves(false, true)
Insert cell
Insert cell
Insert cell

drawRowOfLeaves(false, false, d3.curveNatural)
Insert cell
drawRowOfLeaves(true, false, d3.curveNatural)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveBasis)
Insert cell
drawRowOfLeaves(true, false, d3.curveBasis)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveBumpY)
Insert cell
drawRowOfLeaves(true, false, d3.curveBumpY)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveBundle)
Insert cell
drawRowOfLeaves(true, false, d3.curveBundle)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveCardinal)
Insert cell
drawRowOfLeaves(true, false, d3.curveCardinal)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveCatmullRom)
Insert cell
drawRowOfLeaves(true, false, d3.curveCatmullRom)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveMonotoneY)
Insert cell
drawRowOfLeaves(true, false, d3.curveMonotoneY)
Insert cell
Insert cell
drawRowOfLeaves(false, false, d3.curveLinear)
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