forked from georgiamoon/costOfConnectivity
-
Notifications
You must be signed in to change notification settings - Fork 4
/
cityAvgMinMax.html
140 lines (117 loc) · 3.77 KB
/
cityAvgMinMax.html
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
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.dot {
stroke: #000;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<h3>City Average, Min, Max Speed and Cost</h3>
<script>
var margin = {top: 20, right: 20, bottom: 30, left: 40},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var x = d3.scale.linear()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var color = d3.scale.category10();
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var 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 + ")");
d3.csv("cityAvgMaxMin.csv", function(error, data) {
data.forEach(function(d) {
d.AvgDLMbps = +d.AvgDLMbps;
d.MaxDLMbps = +d.MaxDLMbps;
d.MinDLMbps = +d.MinDLMbps;
d.AvgULMbps = +d.AvgULMbps;
d.MaxULMbps = +d.MaxULMbps;
d.MinULMbps = +d.MinULMbps;
d.ISPCount = +d.ISPCount;
d.AvgMonPricePPP = +d.AvgMonPricePPP;
d.MaxMonPricePPP = +d.MaxMonPricePPP;
d.MinMonPricePPP = +d.MinMonPricePPP;
//Continent,City,ISPCount,AvgDLMbps,MaxDLMbps,MinDLMbps,AvgULMbps,MaxULMbps,MinULMbps,AvgMonPricePPP,MaxMonPricePPP,MinMonPricePPP
});
x.domain(d3.extent(data, function(d) { return d.ISPCount; })).nice();
y.domain(d3.extent(data, function(d) { return d.AvgDLMbps; })).nice();
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("class", "label")
.attr("x", width)
.attr("y", -6)
.style("text-anchor", "end")
.text("Number of ISPs");
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("class", "label")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Download Speed (Mbps)")
svg.selectAll(".dot")
.data(data)
.enter().append("circle")
.attr("class", "dot")
.attr("r", function(d){ return Math.sqrt(d.AvgMonPricePPP);})
.attr("cx", function(d) { return x(d.ISPCount); })
.attr("cy", function(d) { return y(d.AvgDLMbps); })
.style("fill", function(d) { return color(d.Continent); })
.style("opacity", 0.5)
.style("stroke-width", 0.1)
.append("svg:title")
.text(function(d){ return d.City + "\nAverage Download Speed: " + d.AvgDLMbps + " Mbps \nAverage Price: $"+ d.AvgMonPricePPP + "\nNumber of ISPs: "+ d.ISPCount;});
var textLabels = svg.selectAll(".dottext")
.data(data)
.enter()
.append("text")
.attr("class", "dottext")
.attr("x", function(d){ return x(d.ISPCount) + 5; })
.attr("y", function(d) { return y(d.AvgDLMbps) + 5; })
.text( function(d){ return d.City;})
.attr("font-family", "sans-serif")
.attr("opacity", 1)
.attr("font-size", "10px")
.attr("fill", "black");
var legend = svg.selectAll(".legend")
.data(color.domain())
.enter().append("g")
.attr("class", "legend")
.attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; });
legend.append("rect")
.attr("x", width - 94)
.attr("width", 18)
.attr("height", 18)
.style("fill", color);
legend.append("text")
.attr("x", width - 100)
.attr("y", 9)
.attr("dy", ".35em")
.style("text-anchor", "end")
.text(function(d) { return d; });
});
</script>