Published
Edited
Sep 21, 2020
Insert cell
md`# Day Twenty-Seven, 2020-09-20`
Insert cell
md`
I have long been struggleing with how to execuate what I haver learned from the book in Observable. I didn't know how to create an SVG in the first place. In the book, I'll do that via \`d3.select("body").append("svg").attr...\`, however, there is no "body" for me to select in Observable. Also, I didn't know what the symbol of \`=>\` mean. Thrid, I didn't know why so many Observable notebooks have \`consta\`.
`
Insert cell
md`
Today is a breakthrough for me, because I showed the results I usually see when I was practicing with the book. You can see the results below.

I learned from Mike Bostock's [notebook of Bar Chart](https://observablehq.com/@d3/bar-chart). I also learned that I can include my codes in curly brackets, and that I need to return at the end, from [this blog post](https://www.markusdosch.com/2020/04/exploring-observables-interactive-javascript-notebooks/) by [Markus Dosch](https://www.markusdosch.com/).
`
Insert cell
d3 = require("d3@6")
Insert cell
chart = {
const w = 600;
const h = 250;
const dataset = [ 5, 10, 13, 19, 21, 25, 22, 18, 15, 13,
11, 12, 15, 20, 18, 17, 16, 18, 23, 25 ];
const xScale = d3.scaleBand()
.domain(d3.range(dataset.length))
.rangeRound([0, w])
.paddingInner(0.05);
const yScale = d3.scaleLinear()
.domain([0, d3.max(dataset)])
.range([0, h]);
const svg = d3.create("svg")
.attr("width", w)
.attr("height", h);
svg.selectAll("rect")
.data(dataset)
.enter()
.append("rect")
.attr("x", (d, i) => xScale(i))
.attr("y", d => h - yScale(d))
.attr("width", xScale.bandwidth())
.attr("height", d => yScale(d))
.attr("fill", d => "rgb(0, 0, "+ Math.round(d * 10) +")");
return svg.node();
}
Insert cell
md`
Some points worth mentioning:

- You can write codes involving multiple variables by including them in curly brackets. If you don't use curly brackets, you have to dedicate one cell to each variable. See [this example](https://observablehq.com/@hongtaoh/bar-chart-cell-by-cell) if you don't know what "dedicating one cell to each variable" means.
- In the book, you normally write \`var w = 600\`. In Observable, however, you need to write \`const w = 600\`. Don't ask me why. If you are dedicating one cell to each variable, then you don't need to write \`const w = 600\`. Don't ask me why.
- To show the results, you need to use \`return svg.node()\`. Again, don't ask me why.
- By the way, \`d => yScale(d)\` is simply short for \`function(d) { return yScale(d) }\`. Similarly, \`(d, i) => xScale(i)\` means \`function(d, i) { return xScale(i)}\`
`
Insert cell
p = html `<p>Click here for new data</p>`
Insert cell
md`
Go to [Day 28](https://observablehq.com/@hongtaoh/day-twenty-eight-task-9-2-continued-2020-09-21).
`
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