Public
Edited
Mar 22, 2021
3 forks
1 star
Insert cell
md`# Explorable Data`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
viewof CI = {
const s = slider({
min: 0.5,
max: 0.999,
step: 0.01,
format: ".0%",
value: 0.95,
description: "Choose the confidence interval you want"
})
s.input.style.width = "40%";
return s;
}
Insert cell
Insert cell
dataset = [Math.floor(CI * 130 + 77), CI * 100 + 25, CI * 100 + 75, 250 - CI * 100, Math.floor(320 - CI * 25), Math.floor(500 - CI * 250)]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
D_chart = {
const width = 700;
const height = 350;
const dataset = [5, 10, 24, 16, 18, 19, 22, 9, 8, 17, 4, 6, 10, 12, 20];
const margin = ({top: 50, right: 100, bottom: 10, left: 10})
const svg = d3.create("svg").attr("width", width).attr("height", height)
let xScale = d3.scaleBand()
.domain(d3.range(dataset.length))
.range([0, width - margin.right])
.paddingInner(0.05);
let yScale = d3.scaleLinear()
.domain([0, d3.max(dataset)])
.range([0, height]);
const rects = svg.selectAll("rect")
.data(dataset)
.join("rect")
.attr("x", (d, i) => xScale(i))
.attr("y", d => height - yScale(d))
.attr("width", xScale.bandwidth())
.attr("height", d => yScale(d))
.attr("fill", d => "rgb("+ Math.round(d * 5) +", "+ Math.round(d * 2) +", "+ Math.floor(d * 9) +")");
d3.select(add)
.on("click", function(){
const maxValue = 40;
let newNumber = 1+ Math.round(Math.random() * maxValue);
dataset.push(newNumber);
xScale.domain(d3.range(dataset.length));
yScale.domain([0, d3.max(dataset)]);
const bars = svg.selectAll("rect").data(dataset);
const enter = bars.enter().append("rect").attr("x", width).attr("y", d => height - yScale(d))
const updatedBars = enter.merge(bars)
.transition()
.duration(400)
.attr("x", (d, i) => xScale(i))
.attr("y", d => height - yScale(d))
.attr("width", xScale.bandwidth())
.attr("height", d => yScale(d))
.attr("fill", d => "rgb("+ Math.round(d * 5) +", "+ Math.round(d * 2) +", "+ Math.floor(d * 9) +")");
svg.selectAll("text")
.data([newNumber])
.join("text")
.attr("x", 650)
.attr("y", 50)
.attr("font-size", "45px")
.text(d => d)
})
d3.select(reset)
.on("click", function(){
while (dataset.length > 15) {
dataset.pop()
}
svg.selectAll("text").remove()
xScale.domain(d3.range(dataset.length));
yScale.domain([0, d3.max(dataset)]);
svg.selectAll("rect")
.data(dataset)
.join(
exit => exit
.remove()
)
.transition()
.duration(500)
.attr("x", (d, i) => xScale(i))
.attr("y", d => height - yScale(d))
.attr("width", xScale.bandwidth())
.attr("height", d => yScale(d))
.attr("fill", d => "rgb("+ Math.round(d * 5) +", "+ Math.round(d * 2) +", "+ Math.floor(d * 9) +")");
})
return svg.node()
//This visualization is based on Scott Murray's D3 Book (2nd edition) and https://observablehq.com/@uvizlab/d3-tutorial-4-bar-chart-with-transition
}
Insert cell
d3 = require("d3@6")
Insert cell
import {select} from "@jashkenas/inputs"
Insert cell
import {slide, slide_style} from "@mbostock/slide"
Insert cell
import {slider} from "@jashkenas/inputs"
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