-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgraph.js
214 lines (183 loc) · 4.65 KB
/
graph.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// gridlines in x axis function
function make_x_gridlines(xScale) {
return d3.axisBottom(xScale)
.ticks(5)
}
// gridlines in y axis function
function make_y_gridlines(yScale) {
return d3.axisLeft(yScale)
.ticks(5)
}
function graph(result, n, xaxis, maxY) {
let margin = {top: 50, right: 50, bottom: 50, left: 50};
let width = window.innerWidth - margin.left - margin.right; // Use the window's width
let height = window.innerHeight - margin.top - margin.bottom; // Use the window's height
let xScale = d3.scaleLinear()
.domain([0, xaxis[n-1]])
//.domain(0, n)
.range([0, width]);
let xMap = function(d) { return xScale(d[0]); }
let yScale = d3.scaleLinear()
.domain([0, maxY])
.range([height, 0]);
let yMap = function(d) { return yScale(d[1]); }
let line = d3.line()
.x(function(d, i) { return xScale(d[0]); })
.y(function(d, i) { return yScale(d[1]); })
let svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
svg.append("g")
.attr("class", "xaxis")
.attr("transform", "translate(0," + height + ")")
.call(d3.axisBottom(xScale));
svg.append("g")
.attr("class", "yaxis")
.call(d3.axisLeft(yScale));
// add the X gridlines
svg.append("g")
.attr("class", "grid")
.attr("transform", "translate(0," + height + ")")
.call(make_x_gridlines(xScale)
.tickSize(-height)
.tickFormat("")
)
// add the Y gridlines
svg.append("g")
.attr("class", "grid")
.call(make_y_gridlines(yScale)
.tickSize(-width)
.tickFormat("")
)
// axis labels
svg.append("text")
.attr("transform", "rotate(270)")
.attr("x", -height/2)
.attr("y", -32)
.attr("class", "axisLabel")
.text("Cycles Per Iteration");
svg.append("text")
.attr("x", width/2)
.attr("y", height + 40)
.attr("class", "axisLabel")
.text("Array Size (n x n)");
// add some dots - should do a better job organizing my data
svg.selectAll(".dotijkjs")
.data(result.ijkJS)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "ijkjs")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
svg.selectAll(".dotkjijs")
.data(result.kjiJS)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "kjijs")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
svg.selectAll(".dotbmmjs")
.data(result.bmmJS)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "bmmjs")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
svg.selectAll(".dotijkc")
.data(result.ijkC)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "ijkc")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
svg.selectAll(".dotkjic")
.data(result.kjiC)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "kjic")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
svg.selectAll(".dotbmmc")
.data(result.bmmC)
.enter().append("circle")
.attr("class", "dot")
.attr("id", "bmmc")
.attr("r", 3.5)
.attr("cx", xMap)
.attr("cy", yMap);
// lines
svg.append("path")
.datum(result.ijkJS)
.attr("class", "line")
.attr("id", "ijkjs")
.attr("d", line);
svg.append("path")
.datum(result.kjiJS)
.attr("class", "line")
.attr("id", "kjijs")
.attr("d", line);
svg.append("path")
.datum(result.bmmJS)
.attr("class", "line")
.attr("id", "bmmjs")
.attr("d", line);
svg.append("path")
.datum(result.ijkC)
.attr("class", "line")
.attr("id", "ijkc")
.attr("d", line);
svg.append("path")
.datum(result.kjiC)
.attr("class", "line")
.attr("id", "kjic")
.attr("d", line);
svg.append("path")
.datum(result.bmmC)
.attr("class", "line")
.attr("id", "bmmc")
.attr("d", line);
// legend
svg.append("text")
.attr("x", 2)
.attr("y", 15)
.attr("id", "ijkjs")
.attr("class", "legend")
.text("ijk - JS");
svg.append("text")
.attr("x", 2)
.attr("y", 45)
.attr("id", "kjijs")
.attr("class", "legend")
.text("kji - JS");
svg.append("text")
.attr("x", 2)
.attr("y", 75)
.attr("id", "bmmjs")
.attr("class", "legend")
.text("bmm - JS");
svg.append("text")
.attr("x", 2)
.attr("y", 105)
.attr("id", "ijkc")
.attr("class", "legend")
.text("ijk - C");
svg.append("text")
.attr("x", 2)
.attr("y", 135)
.attr("id", "kjic")
.attr("class", "legend")
.text("kji - C");
svg.append("text")
.attr("x", 2)
.attr("y", 165)
.attr("id", "bmmc")
.attr("class", "legend")
.text("bmm - C");
}