4 <title>Linear Regression
</title>
6 For production (minified) code, use:
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
11 <style type=
"text/css">
12 body { max-width:
640 px; }
16 <h2>Linear Regression Demo
</h2>
17 <p>Click the buttons to generate linear regressions over either data
18 series. If you zoom in and click the regression button, the regression will
19 only be run over visible points. Zoom back out to see what the local
20 regression looks like over the full data.
</p>
22 <div id=
"demodiv" style=
"width: 480px; height: 320px;"></div>
24 <script type=
"text/javascript">
25 var data =
"X,Y1,Y2\n";
26 for (var i =
0; i <
120; i++) {
28 // i /
5.0 +
10.0 * Math.sin(i /
3.0),
29 //
30.0 - i /
5.0 -
10.0 * Math.sin(i /
3.0 +
1.0)]);
30 data += i +
"," + i +
"/120," + (i*(
120-i)) +
"/" + (
60*
60) +
"\n";
34 document.getElementById(
"demodiv"),
37 underlayCallback: drawLines,
46 // coefficients of regression for each series.
47 // if coeffs = [ null, [
1,
2], null ] then we draw a regression for series
1
48 // only. The regression line is y =
1 +
2 * x.
49 var coeffs = [ null, null, null ];
50 function regression(series) {
51 // Only run the regression over visible points.
52 var range = g.xAxisRange();
54 var sum_xy =
0.0, sum_x =
0.0, sum_y =
0.0, sum_x2 =
0.0, num =
0;
55 for (var i =
0; i < g.numRows(); i++) {
56 var x = g.getValue(i,
0);
57 if (x < range[
0] || x
> range[
1]) continue;
59 var y = g.getValue(i, series);
60 if (y == null) continue;
73 var a = (sum_xy - sum_x * sum_y / num) / (sum_x2 - sum_x * sum_x / num);
74 var b = (sum_y - a * sum_x) / num;
76 coeffs[series] = [b, a];
77 if (typeof(console) != 'undefined') {
78 console.log(
"coeffs(" + series +
"): [" + b +
", " + a +
"]");
81 g.updateOptions({}); // forces a redraw.
84 function clearLines() {
85 for (var i =
0; i < coeffs.length; i++) coeffs[i] = null;
90 return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')';
93 function drawLines(ctx, area, layout) {
94 if (typeof(g) == 'undefined') return; // won't be set on the initial draw.
96 var range = g.xAxisRange();
97 for (var i =
0; i < coeffs.length; i++) {
98 if (!coeffs[i]) continue;
100 var b = coeffs[i][
0];
107 // Scale up to percentages, rather than fractions.
111 var p1 = g.toDomCoords(x1, y1);
112 var p2 = g.toDomCoords(x2, y2);
114 var c = Dygraph.toRGB_(g.getColors()[i -
1]);
115 c.r = Math.floor(
255 -
0.5 * (
255 - c.r));
116 c.g = Math.floor(
255 -
0.5 * (
255 - c.g));
117 c.b = Math.floor(
255 -
0.5 * (
255 - c.b));
118 var color = toHex(c);
120 ctx.strokeStyle = color;
123 ctx.moveTo(p1[
0], p1[
1]);
124 ctx.lineTo(p2[
0], p2[
1]);
133 <div style=
"position: absolute; left: 500px; top: 150px;">
134 <input type=button
style=
"color: green;" value=
"Regression (Y1)" onClick=
"regression(1)" />
136 <input type=button
style=
"color: blue;" value=
"Regression (Y2)" onClick=
"regression(2)" />
138 <input type=button
value=
"Clear Lines" onClick=
"clearLines()" />