Public
Edited
Nov 3
Insert cell
Insert cell
sandsnapRaw = FileAttachment("SandSnap_for__Public_Download_Modified@2.csv").csv()
Insert cell
Insert cell
Insert cell
viewof selectedStates = Inputs.table(sandsnapStates)
Insert cell
grainSizeExtents = d3.extent(sandsnapStates, (state) => state.D50)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
simpleViz = {
//Create SVG artboard
const svg = d3.create("svg").attr("width", width).attr("height", height);

//Create SVG rect for background color
svg
.append("rect")
.attr("width", width)
.attr("height", height)
.attr("fill", bkgdColor);

//add axes defined below
svg
.append("g")
.attr("transform", "translate(0," + (height - margin) + ")")
.call(xAxis)
.call((g) => {
g.selectAll("line");
});

svg
.append("g")
.attr("transform", "translate(" + margin + ")")
.call(yAxis)
.call((g) => {
g.select(".domain").remove();
g.selectAll("line").attr("opacity", ".1");
});

svg
.selectAll(".dataPoints")
.data(sandsnapStates)
.join("circle")
.attr("cx", (d) => statesToPixelsX(d.state))
.attr("cy", (d) => grainSizeToPixelsY(d.D50))
.attr("r", 3)
.attr("fill", eleColor);

return svg.node();
}
Insert cell
Insert cell
grainSizeToPixelsY = d3
.scaleLinear()
.domain([0, 2])
.range([height - margin, margin])
Insert cell
xAxis = d3
.axisBottom(statesToPixelsX)
.tickPadding(10)
.tickSizeInner(5)
//.tickSizeInner(-height + margin * 2) //try this one too to see vertical grid lines!
.tickSizeOuter(0)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
olympians
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