Monday, October 23, 12:30-1:45pm, PM 103
The midterm will cover all material from the beginning of the semester through geospatial data. The material will cover Chapters 1,2,3,5,7,8.1-8.3, and 10. In addition, the exam will cover HTML, CSS, SVG, and D3 concepts, including the understanding of code. If you are required to write code, I will only require pseudocode—the exact syntax is not required. CS 627 students will have additional questions that will likely include the papers discussed in class.
newS
at the end of
this code? Remember how key functions work.var a = [1,4,7,3,2];
.select("#myviz").append("svg");
d3.selectAll("rect").data(a)
svg.join("rect");
var b = [4,7,3,2,5];
var s = svg.selectAll("rect").data(b, function(d) { return d; });
var newS = s.enter().append("rect").merge(s)