Sam Korn
##Email [email protected]
Write down your answers to TWO questions. For the rest, think about them and be ready to discuss in class.
Data-Driven Documents
D3 provides a non-proprietary way of manipulating DOM elements of the page, according to datasets. It allows for clean data visualization.
Mike Bostock works for the New York Times making data visualization infographics. He also created the D3 library.
In the expression function(d) { return Math.sqrt(d); }, can d be replaced by another variable name such as t? Why or why not?
Yes, once data has been bound to a node, it is always held as the first argument to that variable. The variable name does not change what value is in it.
Which sentence or paragraph in the tutorial article is impossible to understand and can be skipped for now?
The second to last paragraph in the tutorial talks about key functions, which is something that we do not know about yet.