-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot.html
More file actions
103 lines (86 loc) · 2.05 KB
/
Copy pathdot.html
File metadata and controls
103 lines (86 loc) · 2.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Dot Plot</title>
<script type="text/javascript" src="../../d3.js"></script>
<style type="text/css">
body {
font: 10px sans-serif;
}
path.dot {
fill: white;
stroke-width: 1.5px;
}
rect {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.x line, .y line {
stroke: #ccc;
shape-rendering: crispEdges;
}
</style>
</head>
<body>
<script type="text/javascript">
var data = d3.range(100).map(function(i) {
return {x: i / 99, y: Math.random()};
});
var w = 450,
h = 450,
p = 20,
x = d3.scale.linear().range([0, w]),
y = d3.scale.linear().range([h, 0]),
symbol = d3.scale.ordinal().range(d3.svg.symbolTypes),
color = d3.scale.category10();
var vis = d3.select("body")
.append("svg:svg")
.attr("width", w + p * 2)
.attr("height", h + p * 2)
.append("svg:g")
.attr("transform", "translate(" + p + "," + p + ")");
var xrule = vis.selectAll("g.x")
.data(x.ticks(10))
.enter().append("svg:g")
.attr("class", "x");
xrule.append("svg:line")
.attr("x1", x)
.attr("x2", x)
.attr("y1", 0)
.attr("y2", h);
xrule.append("svg:text")
.attr("x", x)
.attr("y", h + 3)
.attr("dy", ".71em")
.attr("text-anchor", "middle")
.text(x.tickFormat(10));
var yrule = vis.selectAll("g.y")
.data(y.ticks(10))
.enter().append("svg:g")
.attr("class", "y");
yrule.append("svg:line")
.attr("x1", 0)
.attr("x2", w)
.attr("y1", y)
.attr("y2", y);
yrule.append("svg:text")
.attr("x", -3)
.attr("y", y)
.attr("dy", ".35em")
.attr("text-anchor", "end")
.text(y.tickFormat(10));
vis.append("svg:rect")
.attr("width", w)
.attr("height", h);
vis.selectAll("path.dot")
.data(data)
.enter().append("svg:path")
.attr("class", "dot")
.attr("stroke", function(d, i) { return color(i); })
.attr("transform", function(d) { return "translate(" + x(d.x) + "," + y(d.y) + ")"; })
.attr("d", d3.svg.symbol()
.type(function(d, i) { return symbol(i); }));
</script>
</body>
</html>