d3_rails 2.9.1 → 2.9.2.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.DS_Store +0 -0
- data/Gemfile +0 -1
- data/README.md +3 -36
- data/lib/.DS_Store +0 -0
- data/{vendor/assets/javascripts/morris → lib/d3_rails}/.DS_Store +0 -0
- data/lib/d3_rails/version.rb +1 -1
- data/vendor/.DS_Store +0 -0
- data/vendor/assets/.DS_Store +0 -0
- data/vendor/assets/javascripts/.DS_Store +0 -0
- data/vendor/assets/javascripts/d3.v2.js +7 -5
- data/vendor/assets/stylesheets/.DS_Store +0 -0
- metadata +13 -72
- data/vendor/assets/javascripts/chart/box.js +0 -297
- data/vendor/assets/javascripts/chart/bullet.js +0 -237
- data/vendor/assets/javascripts/chart/chart.js +0 -1
- data/vendor/assets/javascripts/chart/horizon.js +0 -203
- data/vendor/assets/javascripts/chart/qq.js +0 -245
- data/vendor/assets/javascripts/d3_chart_module.js +0 -1
- data/vendor/assets/javascripts/morris.js +0 -1
- data/vendor/assets/javascripts/morris/Makefile +0 -10
- data/vendor/assets/javascripts/morris/README.md +0 -87
- data/vendor/assets/javascripts/morris/examples/_template.html +0 -18
- data/vendor/assets/javascripts/morris/examples/days.html +0 -36
- data/vendor/assets/javascripts/morris/examples/decimal.html +0 -31
- data/vendor/assets/javascripts/morris/examples/lib/example.css +0 -13
- data/vendor/assets/javascripts/morris/examples/lib/example.js +0 -4
- data/vendor/assets/javascripts/morris/examples/lib/prettify.css +0 -1
- data/vendor/assets/javascripts/morris/examples/lib/prettify.js +0 -28
- data/vendor/assets/javascripts/morris/examples/months-no-smooth.html +0 -37
- data/vendor/assets/javascripts/morris/examples/negative.html +0 -35
- data/vendor/assets/javascripts/morris/examples/non-date.html +0 -36
- data/vendor/assets/javascripts/morris/examples/quarters.html +0 -53
- data/vendor/assets/javascripts/morris/examples/timestamps.html +0 -37
- data/vendor/assets/javascripts/morris/examples/weeks.html +0 -52
- data/vendor/assets/javascripts/morris/morris.coffee +0 -444
- data/vendor/assets/javascripts/morris/morris.js +0 -493
- data/vendor/assets/javascripts/morris/morris.min.js +0 -1
- data/vendor/assets/javascripts/tesseract.js +0 -1
- data/vendor/assets/javascripts/tesseract/.gitignore +0 -2
- data/vendor/assets/javascripts/tesseract/LICENSE +0 -12
- data/vendor/assets/javascripts/tesseract/Makefile +0 -48
- data/vendor/assets/javascripts/tesseract/README.md +0 -11
- data/vendor/assets/javascripts/tesseract/index.js +0 -1
- data/vendor/assets/javascripts/tesseract/lib/dart/AUTHORS +0 -9
- data/vendor/assets/javascripts/tesseract/lib/dart/LICENSE +0 -25
- data/vendor/assets/javascripts/tesseract/lib/dart/dual_pivot_quicksort.dart +0 -342
- data/vendor/assets/javascripts/tesseract/package.json +0 -11
- data/vendor/assets/javascripts/tesseract/src/array.js +0 -32
- data/vendor/assets/javascripts/tesseract/src/bisect.js +0 -44
- data/vendor/assets/javascripts/tesseract/src/filter.js +0 -19
- data/vendor/assets/javascripts/tesseract/src/heap.js +0 -44
- data/vendor/assets/javascripts/tesseract/src/heapselect.js +0 -36
- data/vendor/assets/javascripts/tesseract/src/identity.js +0 -3
- data/vendor/assets/javascripts/tesseract/src/insertionsort.js +0 -18
- data/vendor/assets/javascripts/tesseract/src/null.js +0 -3
- data/vendor/assets/javascripts/tesseract/src/package.js +0 -14
- data/vendor/assets/javascripts/tesseract/src/permute.js +0 -8
- data/vendor/assets/javascripts/tesseract/src/quicksort.js +0 -282
- data/vendor/assets/javascripts/tesseract/src/reduce.js +0 -19
- data/vendor/assets/javascripts/tesseract/src/tesseract.js +0 -663
- data/vendor/assets/javascripts/tesseract/src/version.js +0 -1
- data/vendor/assets/javascripts/tesseract/src/zero.js +0 -3
- data/vendor/assets/javascripts/tesseract/tesseract.js +0 -1177
- data/vendor/assets/javascripts/tesseract/tesseract.min.js +0 -1
- data/vendor/assets/javascripts/tesseract/test/benchmark.js +0 -177
- data/vendor/assets/javascripts/tesseract/test/bisect-test.js +0 -206
- data/vendor/assets/javascripts/tesseract/test/heap-test.js +0 -44
- data/vendor/assets/javascripts/tesseract/test/permute-test.js +0 -51
- data/vendor/assets/javascripts/tesseract/test/select-test.js +0 -63
- data/vendor/assets/javascripts/tesseract/test/sort-test.js +0 -83
- data/vendor/assets/javascripts/tesseract/test/tesseract-test.js +0 -655
- data/vendor/assets/javascripts/tesseract/test/version-test.js +0 -16
@@ -1,237 +0,0 @@
|
|
1
|
-
// Chart design based on the recommendations of Stephen Few. Implementation
|
2
|
-
// based on the work of Clint Ivy, Jamie Love, and Jason Davies.
|
3
|
-
// http://projects.instantcognition.com/protovis/bulletchart/
|
4
|
-
d3.chart.bullet = function() {
|
5
|
-
var orient = "left", // TODO top & bottom
|
6
|
-
reverse = false,
|
7
|
-
duration = 0,
|
8
|
-
ranges = d3_chart_bulletRanges,
|
9
|
-
markers = d3_chart_bulletMarkers,
|
10
|
-
measures = d3_chart_bulletMeasures,
|
11
|
-
width = 380,
|
12
|
-
height = 30,
|
13
|
-
tickFormat = null;
|
14
|
-
|
15
|
-
// For each small multiple…
|
16
|
-
function bullet(g) {
|
17
|
-
g.each(function(d, i) {
|
18
|
-
var rangez = ranges.call(this, d, i).slice().sort(d3.descending),
|
19
|
-
markerz = markers.call(this, d, i).slice().sort(d3.descending),
|
20
|
-
measurez = measures.call(this, d, i).slice().sort(d3.descending),
|
21
|
-
g = d3.select(this);
|
22
|
-
|
23
|
-
// Compute the new x-scale.
|
24
|
-
var x1 = d3.scale.linear()
|
25
|
-
.domain([0, Math.max(rangez[0], markerz[0], measurez[0])])
|
26
|
-
.range(reverse ? [width, 0] : [0, width]);
|
27
|
-
|
28
|
-
// Retrieve the old x-scale, if this is an update.
|
29
|
-
var x0 = this.__chart__ || d3.scale.linear()
|
30
|
-
.domain([0, Infinity])
|
31
|
-
.range(x1.range());
|
32
|
-
|
33
|
-
// Stash the new scale.
|
34
|
-
this.__chart__ = x1;
|
35
|
-
|
36
|
-
// Derive width-scales from the x-scales.
|
37
|
-
var w0 = d3_chart_bulletWidth(x0),
|
38
|
-
w1 = d3_chart_bulletWidth(x1);
|
39
|
-
|
40
|
-
// Update the range rects.
|
41
|
-
var range = g.selectAll("rect.range")
|
42
|
-
.data(rangez);
|
43
|
-
|
44
|
-
range.enter().append("svg:rect")
|
45
|
-
.attr("class", function(d, i) { return "range s" + i; })
|
46
|
-
.attr("width", w0)
|
47
|
-
.attr("height", height)
|
48
|
-
.attr("x", reverse ? x0 : 0)
|
49
|
-
.transition()
|
50
|
-
.duration(duration)
|
51
|
-
.attr("width", w1)
|
52
|
-
.attr("x", reverse ? x1 : 0);
|
53
|
-
|
54
|
-
range.transition()
|
55
|
-
.duration(duration)
|
56
|
-
.attr("x", reverse ? x1 : 0)
|
57
|
-
.attr("width", w1)
|
58
|
-
.attr("height", height);
|
59
|
-
|
60
|
-
// Update the measure rects.
|
61
|
-
var measure = g.selectAll("rect.measure")
|
62
|
-
.data(measurez);
|
63
|
-
|
64
|
-
measure.enter().append("svg:rect")
|
65
|
-
.attr("class", function(d, i) { return "measure s" + i; })
|
66
|
-
.attr("width", w0)
|
67
|
-
.attr("height", height / 3)
|
68
|
-
.attr("x", reverse ? x0 : 0)
|
69
|
-
.attr("y", height / 3)
|
70
|
-
.transition()
|
71
|
-
.duration(duration)
|
72
|
-
.attr("width", w1)
|
73
|
-
.attr("x", reverse ? x1 : 0);
|
74
|
-
|
75
|
-
measure.transition()
|
76
|
-
.duration(duration)
|
77
|
-
.attr("width", w1)
|
78
|
-
.attr("height", height / 3)
|
79
|
-
.attr("x", reverse ? x1 : 0)
|
80
|
-
.attr("y", height / 3);
|
81
|
-
|
82
|
-
// Update the marker lines.
|
83
|
-
var marker = g.selectAll("line.marker")
|
84
|
-
.data(markerz);
|
85
|
-
|
86
|
-
marker.enter().append("svg:line")
|
87
|
-
.attr("class", "marker")
|
88
|
-
.attr("x1", x0)
|
89
|
-
.attr("x2", x0)
|
90
|
-
.attr("y1", height / 6)
|
91
|
-
.attr("y2", height * 5 / 6)
|
92
|
-
.transition()
|
93
|
-
.duration(duration)
|
94
|
-
.attr("x1", x1)
|
95
|
-
.attr("x2", x1);
|
96
|
-
|
97
|
-
marker.transition()
|
98
|
-
.duration(duration)
|
99
|
-
.attr("x1", x1)
|
100
|
-
.attr("x2", x1)
|
101
|
-
.attr("y1", height / 6)
|
102
|
-
.attr("y2", height * 5 / 6);
|
103
|
-
|
104
|
-
// Compute the tick format.
|
105
|
-
var format = tickFormat || x1.tickFormat(8);
|
106
|
-
|
107
|
-
// Update the tick groups.
|
108
|
-
var tick = g.selectAll("g.tick")
|
109
|
-
.data(x1.ticks(8), function(d) {
|
110
|
-
return this.textContent || format(d);
|
111
|
-
});
|
112
|
-
|
113
|
-
// Initialize the ticks with the old scale, x0.
|
114
|
-
var tickEnter = tick.enter().append("svg:g")
|
115
|
-
.attr("class", "tick")
|
116
|
-
.attr("transform", d3_chart_bulletTranslate(x0))
|
117
|
-
.style("opacity", 1e-6);
|
118
|
-
|
119
|
-
tickEnter.append("svg:line")
|
120
|
-
.attr("y1", height)
|
121
|
-
.attr("y2", height * 7 / 6);
|
122
|
-
|
123
|
-
tickEnter.append("svg:text")
|
124
|
-
.attr("text-anchor", "middle")
|
125
|
-
.attr("dy", "1em")
|
126
|
-
.attr("y", height * 7 / 6)
|
127
|
-
.text(format);
|
128
|
-
|
129
|
-
// Transition the entering ticks to the new scale, x1.
|
130
|
-
tickEnter.transition()
|
131
|
-
.duration(duration)
|
132
|
-
.attr("transform", d3_chart_bulletTranslate(x1))
|
133
|
-
.style("opacity", 1);
|
134
|
-
|
135
|
-
// Transition the updating ticks to the new scale, x1.
|
136
|
-
var tickUpdate = tick.transition()
|
137
|
-
.duration(duration)
|
138
|
-
.attr("transform", d3_chart_bulletTranslate(x1))
|
139
|
-
.style("opacity", 1);
|
140
|
-
|
141
|
-
tickUpdate.select("line")
|
142
|
-
.attr("y1", height)
|
143
|
-
.attr("y2", height * 7 / 6);
|
144
|
-
|
145
|
-
tickUpdate.select("text")
|
146
|
-
.attr("y", height * 7 / 6);
|
147
|
-
|
148
|
-
// Transition the exiting ticks to the new scale, x1.
|
149
|
-
tick.exit().transition()
|
150
|
-
.duration(duration)
|
151
|
-
.attr("transform", d3_chart_bulletTranslate(x1))
|
152
|
-
.style("opacity", 1e-6)
|
153
|
-
.remove();
|
154
|
-
});
|
155
|
-
d3.timer.flush();
|
156
|
-
}
|
157
|
-
|
158
|
-
// left, right, top, bottom
|
159
|
-
bullet.orient = function(x) {
|
160
|
-
if (!arguments.length) return orient;
|
161
|
-
orient = x;
|
162
|
-
reverse = orient == "right" || orient == "bottom";
|
163
|
-
return bullet;
|
164
|
-
};
|
165
|
-
|
166
|
-
// ranges (bad, satisfactory, good)
|
167
|
-
bullet.ranges = function(x) {
|
168
|
-
if (!arguments.length) return ranges;
|
169
|
-
ranges = x;
|
170
|
-
return bullet;
|
171
|
-
};
|
172
|
-
|
173
|
-
// markers (previous, goal)
|
174
|
-
bullet.markers = function(x) {
|
175
|
-
if (!arguments.length) return markers;
|
176
|
-
markers = x;
|
177
|
-
return bullet;
|
178
|
-
};
|
179
|
-
|
180
|
-
// measures (actual, forecast)
|
181
|
-
bullet.measures = function(x) {
|
182
|
-
if (!arguments.length) return measures;
|
183
|
-
measures = x;
|
184
|
-
return bullet;
|
185
|
-
};
|
186
|
-
|
187
|
-
bullet.width = function(x) {
|
188
|
-
if (!arguments.length) return width;
|
189
|
-
width = x;
|
190
|
-
return bullet;
|
191
|
-
};
|
192
|
-
|
193
|
-
bullet.height = function(x) {
|
194
|
-
if (!arguments.length) return height;
|
195
|
-
height = x;
|
196
|
-
return bullet;
|
197
|
-
};
|
198
|
-
|
199
|
-
bullet.tickFormat = function(x) {
|
200
|
-
if (!arguments.length) return tickFormat;
|
201
|
-
tickFormat = x;
|
202
|
-
return bullet;
|
203
|
-
};
|
204
|
-
|
205
|
-
bullet.duration = function(x) {
|
206
|
-
if (!arguments.length) return duration;
|
207
|
-
duration = x;
|
208
|
-
return bullet;
|
209
|
-
};
|
210
|
-
|
211
|
-
return bullet;
|
212
|
-
};
|
213
|
-
|
214
|
-
function d3_chart_bulletRanges(d) {
|
215
|
-
return d.ranges;
|
216
|
-
}
|
217
|
-
|
218
|
-
function d3_chart_bulletMarkers(d) {
|
219
|
-
return d.markers;
|
220
|
-
}
|
221
|
-
|
222
|
-
function d3_chart_bulletMeasures(d) {
|
223
|
-
return d.measures;
|
224
|
-
}
|
225
|
-
|
226
|
-
function d3_chart_bulletTranslate(x) {
|
227
|
-
return function(d) {
|
228
|
-
return "translate(" + x(d) + ",0)";
|
229
|
-
};
|
230
|
-
}
|
231
|
-
|
232
|
-
function d3_chart_bulletWidth(x) {
|
233
|
-
var x0 = x(0);
|
234
|
-
return function(d) {
|
235
|
-
return Math.abs(x(d) - x0);
|
236
|
-
};
|
237
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
d3.chart = {};
|
@@ -1,203 +0,0 @@
|
|
1
|
-
// Implements a horizon layout, which is a variation of a single-series
|
2
|
-
// area chart where the area is folded into multiple bands. Color is used to
|
3
|
-
// encode band, allowing the size of the chart to be reduced significantly
|
4
|
-
// without impeding readability. This layout algorithm is based on the work of
|
5
|
-
// J. Heer, N. Kong and M. Agrawala in "Sizing the Horizon: The Effects of Chart
|
6
|
-
// Size and Layering on the Graphical Perception of Time Series Visualizations",
|
7
|
-
// CHI 2009. http://hci.stanford.edu/publications/2009/heer-horizon-chi09.pdf
|
8
|
-
d3.chart.horizon = function() {
|
9
|
-
var bands = 1, // between 1 and 5, typically
|
10
|
-
mode = "offset", // or mirror
|
11
|
-
interpolate = "linear", // or basis, monotone, step-before, etc.
|
12
|
-
x = d3_chart_horizonX,
|
13
|
-
y = d3_chart_horizonY,
|
14
|
-
w = 960,
|
15
|
-
h = 40,
|
16
|
-
duration = 0;
|
17
|
-
|
18
|
-
var color = d3.scale.linear()
|
19
|
-
.domain([-1, 0, 1])
|
20
|
-
.range(["#d62728", "#fff", "#1f77b4"]);
|
21
|
-
|
22
|
-
// For each small multiple…
|
23
|
-
function horizon(g) {
|
24
|
-
g.each(function(d, i) {
|
25
|
-
var g = d3.select(this),
|
26
|
-
n = 2 * bands + 1,
|
27
|
-
xMin = Infinity,
|
28
|
-
xMax = -Infinity,
|
29
|
-
yMax = -Infinity,
|
30
|
-
x0, // old x-scale
|
31
|
-
y0, // old y-scale
|
32
|
-
id; // unique id for paths
|
33
|
-
|
34
|
-
// Compute x- and y-values along with extents.
|
35
|
-
var data = d.map(function(d, i) {
|
36
|
-
var xv = x.call(this, d, i),
|
37
|
-
yv = y.call(this, d, i);
|
38
|
-
if (xv < xMin) xMin = xv;
|
39
|
-
if (xv > xMax) xMax = xv;
|
40
|
-
if (-yv > yMax) yMax = -yv;
|
41
|
-
if (yv > yMax) yMax = yv;
|
42
|
-
return [xv, yv];
|
43
|
-
});
|
44
|
-
|
45
|
-
// Compute the new x- and y-scales.
|
46
|
-
var x1 = d3.scale.linear().domain([xMin, xMax]).range([0, w]),
|
47
|
-
y1 = d3.scale.linear().domain([0, yMax]).range([0, h * bands]);
|
48
|
-
|
49
|
-
// Retrieve the old scales, if this is an update.
|
50
|
-
if (this.__chart__) {
|
51
|
-
x0 = this.__chart__.x;
|
52
|
-
y0 = this.__chart__.y;
|
53
|
-
id = this.__chart__.id;
|
54
|
-
} else {
|
55
|
-
x0 = d3.scale.linear().domain([0, Infinity]).range(x1.range());
|
56
|
-
y0 = d3.scale.linear().domain([0, Infinity]).range(y1.range());
|
57
|
-
id = ++d3_chart_horizonId;
|
58
|
-
}
|
59
|
-
|
60
|
-
// We'll use a defs to store the area path and the clip path.
|
61
|
-
var defs = g.selectAll("defs")
|
62
|
-
.data([data]);
|
63
|
-
|
64
|
-
var defsEnter = defs.enter().append("svg:defs");
|
65
|
-
|
66
|
-
// The clip path is a simple rect.
|
67
|
-
defsEnter.append("svg:clipPath")
|
68
|
-
.attr("id", "d3_chart_horizon_clip" + id)
|
69
|
-
.append("svg:rect")
|
70
|
-
.attr("width", w)
|
71
|
-
.attr("height", h);
|
72
|
-
|
73
|
-
defs.select("rect").transition()
|
74
|
-
.duration(duration)
|
75
|
-
.attr("width", w)
|
76
|
-
.attr("height", h);
|
77
|
-
|
78
|
-
// The area path is rendered with our resuable d3.svg.area.
|
79
|
-
defsEnter.append("svg:path")
|
80
|
-
.attr("id", "d3_chart_horizon_path" + id)
|
81
|
-
.attr("d", d3_chart_horizonArea
|
82
|
-
.interpolate(interpolate)
|
83
|
-
.x(function(d) { return x0(d[0]); })
|
84
|
-
.y0(h * bands)
|
85
|
-
.y1(function(d) { return h * bands - y0(d[1]); }))
|
86
|
-
.transition()
|
87
|
-
.duration(duration)
|
88
|
-
.attr("d", d3_chart_horizonArea
|
89
|
-
.x(function(d) { return x1(d[0]); })
|
90
|
-
.y1(function(d) { return h * bands - y1(d[1]); }));
|
91
|
-
|
92
|
-
defs.select("path").transition()
|
93
|
-
.duration(duration)
|
94
|
-
.attr("d", d3_chart_horizonArea);
|
95
|
-
|
96
|
-
// We'll use a container to clip all horizon layers at once.
|
97
|
-
g.selectAll("g")
|
98
|
-
.data([null])
|
99
|
-
.enter().append("svg:g")
|
100
|
-
.attr("clip-path", "url(#d3_chart_horizon_clip" + id + ")");
|
101
|
-
|
102
|
-
// Define the transform function based on the mode.
|
103
|
-
var transform = mode == "offset"
|
104
|
-
? function(d) { return "translate(0," + (d + (d < 0) - bands) * h + ")"; }
|
105
|
-
: function(d) { return (d < 0 ? "scale(1,-1)" : "") + "translate(0," + (d - bands) * h + ")"; };
|
106
|
-
|
107
|
-
// Instantiate each copy of the path with different transforms.
|
108
|
-
var u = g.select("g").selectAll("use")
|
109
|
-
.data(d3.range(-1, -bands - 1, -1).concat(d3.range(1, bands + 1)), Number);
|
110
|
-
|
111
|
-
// TODO don't fudge the enter transition
|
112
|
-
u.enter().append("svg:use")
|
113
|
-
.attr("xlink:href", "#d3_chart_horizon_path" + id)
|
114
|
-
.attr("transform", function(d) { return transform(d + (d > 0 ? 1 : -1)); })
|
115
|
-
.style("fill", color)
|
116
|
-
.transition()
|
117
|
-
.duration(duration)
|
118
|
-
.attr("transform", transform);
|
119
|
-
|
120
|
-
u.transition()
|
121
|
-
.duration(duration)
|
122
|
-
.attr("transform", transform)
|
123
|
-
.style("fill", color);
|
124
|
-
|
125
|
-
u.exit().transition()
|
126
|
-
.duration(duration)
|
127
|
-
.attr("transform", transform)
|
128
|
-
.remove();
|
129
|
-
|
130
|
-
// Stash the new scales.
|
131
|
-
this.__chart__ = {x: x1, y: y1, id: id};
|
132
|
-
});
|
133
|
-
d3.timer.flush();
|
134
|
-
}
|
135
|
-
|
136
|
-
horizon.duration = function(x) {
|
137
|
-
if (!arguments.length) return duration;
|
138
|
-
duration = +x;
|
139
|
-
return horizon;
|
140
|
-
};
|
141
|
-
|
142
|
-
horizon.bands = function(x) {
|
143
|
-
if (!arguments.length) return bands;
|
144
|
-
bands = +x;
|
145
|
-
color.domain([-bands, 0, bands]);
|
146
|
-
return horizon;
|
147
|
-
};
|
148
|
-
|
149
|
-
horizon.mode = function(x) {
|
150
|
-
if (!arguments.length) return mode;
|
151
|
-
mode = x + "";
|
152
|
-
return horizon;
|
153
|
-
};
|
154
|
-
|
155
|
-
horizon.colors = function(x) {
|
156
|
-
if (!arguments.length) return color.range();
|
157
|
-
color.range(x);
|
158
|
-
return horizon;
|
159
|
-
};
|
160
|
-
|
161
|
-
horizon.interpolate = function(x) {
|
162
|
-
if (!arguments.length) return interpolate;
|
163
|
-
interpolate = x + "";
|
164
|
-
return horizon;
|
165
|
-
};
|
166
|
-
|
167
|
-
horizon.x = function(z) {
|
168
|
-
if (!arguments.length) return x;
|
169
|
-
x = z;
|
170
|
-
return horizon;
|
171
|
-
};
|
172
|
-
|
173
|
-
horizon.y = function(z) {
|
174
|
-
if (!arguments.length) return y;
|
175
|
-
y = z;
|
176
|
-
return horizon;
|
177
|
-
};
|
178
|
-
|
179
|
-
horizon.width = function(x) {
|
180
|
-
if (!arguments.length) return w;
|
181
|
-
w = +x;
|
182
|
-
return horizon;
|
183
|
-
};
|
184
|
-
|
185
|
-
horizon.height = function(x) {
|
186
|
-
if (!arguments.length) return h;
|
187
|
-
h = +x;
|
188
|
-
return horizon;
|
189
|
-
};
|
190
|
-
|
191
|
-
return horizon;
|
192
|
-
};
|
193
|
-
|
194
|
-
var d3_chart_horizonArea = d3.svg.area(),
|
195
|
-
d3_chart_horizonId = 0;
|
196
|
-
|
197
|
-
function d3_chart_horizonX(d) {
|
198
|
-
return d[0];
|
199
|
-
}
|
200
|
-
|
201
|
-
function d3_chart_horizonY(d) {
|
202
|
-
return d[1];
|
203
|
-
}
|
@@ -1,245 +0,0 @@
|
|
1
|
-
// Based on http://vis.stanford.edu/protovis/ex/qqplot.html
|
2
|
-
d3.chart.qq = function() {
|
3
|
-
var width = 1,
|
4
|
-
height = 1,
|
5
|
-
duration = 0,
|
6
|
-
domain = null,
|
7
|
-
tickFormat = null,
|
8
|
-
n = 100,
|
9
|
-
x = d3_chart_qqX,
|
10
|
-
y = d3_chart_qqY;
|
11
|
-
|
12
|
-
// For each small multiple…
|
13
|
-
function qq(g) {
|
14
|
-
g.each(function(d, i) {
|
15
|
-
var g = d3.select(this),
|
16
|
-
qx = d3_chart_qqQuantiles(n, x.call(this, d, i)),
|
17
|
-
qy = d3_chart_qqQuantiles(n, y.call(this, d, i)),
|
18
|
-
xd = domain && domain.call(this, d, i) || [d3.min(qx), d3.max(qx)], // new x-domain
|
19
|
-
yd = domain && domain.call(this, d, i) || [d3.min(qy), d3.max(qy)], // new y-domain
|
20
|
-
x0, // old x-scale
|
21
|
-
y0; // old y-scale
|
22
|
-
|
23
|
-
// Compute the new x-scale.
|
24
|
-
var x1 = d3.scale.linear()
|
25
|
-
.domain(xd)
|
26
|
-
.range([0, width]);
|
27
|
-
|
28
|
-
// Compute the new y-scale.
|
29
|
-
var y1 = d3.scale.linear()
|
30
|
-
.domain(yd)
|
31
|
-
.range([height, 0]);
|
32
|
-
|
33
|
-
// Retrieve the old scales, if this is an update.
|
34
|
-
if (this.__chart__) {
|
35
|
-
x0 = this.__chart__.x;
|
36
|
-
y0 = this.__chart__.y;
|
37
|
-
} else {
|
38
|
-
x0 = d3.scale.linear().domain([0, Infinity]).range(x1.range());
|
39
|
-
y0 = d3.scale.linear().domain([0, Infinity]).range(y1.range());
|
40
|
-
}
|
41
|
-
|
42
|
-
// Stash the new scales.
|
43
|
-
this.__chart__ = {x: x1, y: y1};
|
44
|
-
|
45
|
-
// Update diagonal line.
|
46
|
-
var diagonal = g.selectAll("line.diagonal")
|
47
|
-
.data([null]);
|
48
|
-
|
49
|
-
diagonal.enter().append("svg:line")
|
50
|
-
.attr("class", "diagonal")
|
51
|
-
.attr("x1", x1(yd[0]))
|
52
|
-
.attr("y1", y1(xd[0]))
|
53
|
-
.attr("x2", x1(yd[1]))
|
54
|
-
.attr("y2", y1(xd[1]));
|
55
|
-
|
56
|
-
diagonal.transition()
|
57
|
-
.duration(duration)
|
58
|
-
.attr("x1", x1(yd[0]))
|
59
|
-
.attr("y1", y1(xd[0]))
|
60
|
-
.attr("x2", x1(yd[1]))
|
61
|
-
.attr("y2", y1(xd[1]));
|
62
|
-
|
63
|
-
// Update quantile plots.
|
64
|
-
var circle = g.selectAll("circle")
|
65
|
-
.data(d3.range(n).map(function(i) {
|
66
|
-
return {x: qx[i], y: qy[i]};
|
67
|
-
}));
|
68
|
-
|
69
|
-
circle.enter().append("svg:circle")
|
70
|
-
.attr("class", "quantile")
|
71
|
-
.attr("r", 4.5)
|
72
|
-
.attr("cx", function(d) { return x0(d.x); })
|
73
|
-
.attr("cy", function(d) { return y0(d.y); })
|
74
|
-
.style("opacity", 1e-6)
|
75
|
-
.transition()
|
76
|
-
.duration(duration)
|
77
|
-
.attr("cx", function(d) { return x1(d.x); })
|
78
|
-
.attr("cy", function(d) { return y1(d.y); })
|
79
|
-
.style("opacity", 1);
|
80
|
-
|
81
|
-
circle.transition()
|
82
|
-
.duration(duration)
|
83
|
-
.attr("cx", function(d) { return x1(d.x); })
|
84
|
-
.attr("cy", function(d) { return y1(d.y); })
|
85
|
-
.style("opacity", 1);
|
86
|
-
|
87
|
-
circle.exit().transition()
|
88
|
-
.duration(duration)
|
89
|
-
.attr("cx", function(d) { return x1(d.x); })
|
90
|
-
.attr("cy", function(d) { return y1(d.y); })
|
91
|
-
.style("opacity", 1e-6)
|
92
|
-
.remove();
|
93
|
-
|
94
|
-
var xformat = tickFormat || x1.tickFormat(4),
|
95
|
-
yformat = tickFormat || y1.tickFormat(4),
|
96
|
-
tx = function(d) { return "translate(" + x1(d) + "," + height + ")"; },
|
97
|
-
ty = function(d) { return "translate(0," + y1(d) + ")"; };
|
98
|
-
|
99
|
-
// Update x-ticks.
|
100
|
-
var xtick = g.selectAll("g.x.tick")
|
101
|
-
.data(x1.ticks(4), function(d) {
|
102
|
-
return this.textContent || xformat(d);
|
103
|
-
});
|
104
|
-
|
105
|
-
var xtickEnter = xtick.enter().append("svg:g")
|
106
|
-
.attr("class", "x tick")
|
107
|
-
.attr("transform", function(d) { return "translate(" + x0(d) + "," + height + ")"; })
|
108
|
-
.style("opacity", 1e-6);
|
109
|
-
|
110
|
-
xtickEnter.append("svg:line")
|
111
|
-
.attr("y1", 0)
|
112
|
-
.attr("y2", -6);
|
113
|
-
|
114
|
-
xtickEnter.append("svg:text")
|
115
|
-
.attr("text-anchor", "middle")
|
116
|
-
.attr("dy", "1em")
|
117
|
-
.text(xformat);
|
118
|
-
|
119
|
-
// Transition the entering ticks to the new scale, x1.
|
120
|
-
xtickEnter.transition()
|
121
|
-
.duration(duration)
|
122
|
-
.attr("transform", tx)
|
123
|
-
.style("opacity", 1);
|
124
|
-
|
125
|
-
// Transition the updating ticks to the new scale, x1.
|
126
|
-
xtick.transition()
|
127
|
-
.duration(duration)
|
128
|
-
.attr("transform", tx)
|
129
|
-
.style("opacity", 1);
|
130
|
-
|
131
|
-
// Transition the exiting ticks to the new scale, x1.
|
132
|
-
xtick.exit().transition()
|
133
|
-
.duration(duration)
|
134
|
-
.attr("transform", tx)
|
135
|
-
.style("opacity", 1e-6)
|
136
|
-
.remove();
|
137
|
-
|
138
|
-
// Update ticks.
|
139
|
-
var ytick = g.selectAll("g.y.tick")
|
140
|
-
.data(y1.ticks(4), function(d) {
|
141
|
-
return this.textContent || yformat(d);
|
142
|
-
});
|
143
|
-
|
144
|
-
var ytickEnter = ytick.enter().append("svg:g")
|
145
|
-
.attr("class", "y tick")
|
146
|
-
.attr("transform", function(d) { return "translate(0," + y0(d) + ")"; })
|
147
|
-
.style("opacity", 1e-6);
|
148
|
-
|
149
|
-
ytickEnter.append("svg:line")
|
150
|
-
.attr("x1", 0)
|
151
|
-
.attr("x2", 6);
|
152
|
-
|
153
|
-
ytickEnter.append("svg:text")
|
154
|
-
.attr("text-anchor", "end")
|
155
|
-
.attr("dx", "-.5em")
|
156
|
-
.attr("dy", ".3em")
|
157
|
-
.text(yformat);
|
158
|
-
|
159
|
-
// Transition the entering ticks to the new scale, y1.
|
160
|
-
ytickEnter.transition()
|
161
|
-
.duration(duration)
|
162
|
-
.attr("transform", ty)
|
163
|
-
.style("opacity", 1);
|
164
|
-
|
165
|
-
// Transition the updating ticks to the new scale, y1.
|
166
|
-
ytick.transition()
|
167
|
-
.duration(duration)
|
168
|
-
.attr("transform", ty)
|
169
|
-
.style("opacity", 1);
|
170
|
-
|
171
|
-
// Transition the exiting ticks to the new scale, y1.
|
172
|
-
ytick.exit().transition()
|
173
|
-
.duration(duration)
|
174
|
-
.attr("transform", ty)
|
175
|
-
.style("opacity", 1e-6)
|
176
|
-
.remove();
|
177
|
-
});
|
178
|
-
}
|
179
|
-
|
180
|
-
qq.width = function(x) {
|
181
|
-
if (!arguments.length) return width;
|
182
|
-
width = x;
|
183
|
-
return qq;
|
184
|
-
};
|
185
|
-
|
186
|
-
qq.height = function(x) {
|
187
|
-
if (!arguments.length) return height;
|
188
|
-
height = x;
|
189
|
-
return qq;
|
190
|
-
};
|
191
|
-
|
192
|
-
qq.duration = function(x) {
|
193
|
-
if (!arguments.length) return duration;
|
194
|
-
duration = x;
|
195
|
-
return qq;
|
196
|
-
};
|
197
|
-
|
198
|
-
qq.domain = function(x) {
|
199
|
-
if (!arguments.length) return domain;
|
200
|
-
domain = x == null ? x : d3.functor(x);
|
201
|
-
return qq;
|
202
|
-
};
|
203
|
-
|
204
|
-
qq.count = function(z) {
|
205
|
-
if (!arguments.length) return n;
|
206
|
-
n = z;
|
207
|
-
return qq;
|
208
|
-
};
|
209
|
-
|
210
|
-
qq.x = function(z) {
|
211
|
-
if (!arguments.length) return x;
|
212
|
-
x = z;
|
213
|
-
return qq;
|
214
|
-
};
|
215
|
-
|
216
|
-
qq.y = function(z) {
|
217
|
-
if (!arguments.length) return y;
|
218
|
-
y = z;
|
219
|
-
return qq;
|
220
|
-
};
|
221
|
-
|
222
|
-
qq.tickFormat = function(x) {
|
223
|
-
if (!arguments.length) return tickFormat;
|
224
|
-
tickFormat = x;
|
225
|
-
return qq;
|
226
|
-
};
|
227
|
-
|
228
|
-
return qq;
|
229
|
-
};
|
230
|
-
|
231
|
-
function d3_chart_qqQuantiles(n, values) {
|
232
|
-
var m = values.length - 1;
|
233
|
-
values = values.slice().sort(d3.ascending);
|
234
|
-
return d3.range(n).map(function(i) {
|
235
|
-
return values[~~(i * m / n)];
|
236
|
-
});
|
237
|
-
}
|
238
|
-
|
239
|
-
function d3_chart_qqX(d) {
|
240
|
-
return d.x;
|
241
|
-
}
|
242
|
-
|
243
|
-
function d3_chart_qqY(d) {
|
244
|
-
return d.y;
|
245
|
-
}
|