@@ -25,13 +25,13 @@ This example builds something close to a javascript charting template that comes
25
25
### Tutorial
26
26
27
27
##### Part I: Render
28
- The first step is to set up our directory struction . Run the following
28
+ The first step is to set up our directory structure . Run the following
29
29
command:
30
30
<pre >
31
31
$ cd D3-201
32
32
$ ./_setup_dirs_.py
33
33
</pre >
34
- We should see new files:
34
+ We should see the following new files.
35
35
<br >
36
36
<img src =" img/file.png " alt =" Drawing " style =" width : 600px ;" />
37
37
</br >
@@ -40,7 +40,7 @@ from the other folders. Open up the index.html file and look at the
40
40
structure. Explore and try to determine where these sources point and
41
41
take a guess:
42
42
43
- 1 . [ basic] What is the purspose each sourced file?
43
+ 1 . [ basic] What is the purpose of each sourced file?
44
44
2 . [ intermediate] What determines the number of graphs we will
45
45
create?
46
46
3 . [ advanced] How does the graph access the data?
@@ -57,18 +57,18 @@ We should see two heatmaps.
57
57
58
58
##### Part II: Explanation of app.js
59
59
Open ` js/app.js ` a text editor.
60
- 1 . Where is ` heatmap ` invoked?
61
- 2 . What is the value of ` myHeatmap ` ?
62
- 2 . Why are we iterating over dataPathArray on line 12?
63
- 3 . What do you think happens when we use ` myHeatmap.height() ` ?
60
+ 1 . [ basic ] Where is ` heatmap ` invoked?
61
+ 2 . [ basic ] What do you think happens when we use ` myHeatmap.height() ` ?
62
+ 3 . [ intermediate ] Why are we iterating over dataPathArray on line 12?
63
+ 4 . [ advanced ] What is the value of ` myHeatmap ` ?
64
64
65
65
##### Part III: Explanation of heatmap.js
66
66
Open ` js/heatmap.js ` in text editor.
67
- 1 . Why do we love python? (see lines 3-49)
68
- 2 . When is the function ` chart ` invoked ?
69
- 3 . What does ` myHeatmap() ` expect and why ?
70
- 4 . How can I change the color of both charts ?
71
- 5 . How can I change the color of just one chart ?
67
+ 1 . [ basic ] Why do we love python? (see lines 3-49)
68
+ 2 . [ basic ] How can I change the color of both charts ?
69
+ 3 . [ intermediate ] How can I change the color of just one chart ?
70
+ 4 . [ advanced ] When is the function ` chart ` invoked ?
71
+ 5 . [ advanced ] What does ` myHeatmap() ` expect and why ?
72
72
73
73
74
74
0 commit comments