4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Linear Regression
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
15 <style type=
"text/css">
16 body { max-width:
640 px; }
20 <h2>Linear Regression Demo
</h2>
21 <p>Click the buttons to generate linear regressions over either data
22 series. If you zoom in and click the regression button, the regression will
23 only be run over visible points. Zoom back out to see what the local
24 regression looks like over the full data.
</p>
26 <div id=
"demodiv" style=
"width: 480px; height: 320px;"></div>
28 <script type=
"text/javascript">
29 var data =
"X,Y1,Y2\n";
30 for (var i =
0; i <
120; i++) {
32 // i /
5.0 +
10.0 * Math.sin(i /
3.0),
33 //
30.0 - i /
5.0 -
10.0 * Math.sin(i /
3.0 +
1.0)]);
34 data += i +
"," + i +
"/120," + (i*(
120-i)) +
"/" + (
60*
60) +
"\n";
38 document.getElementById(
"demodiv"),
41 underlayCallback: drawLines,
49 // coefficients of regression for each series.
50 // if coeffs = [ null, [
1,
2], null ] then we draw a regression for series
1
51 // only. The regression line is y =
1 +
2 * x.
52 var coeffs = [ null, null, null ];
53 function regression(series) {
54 // Only run the regression over visible points.
55 var range = g.xAxisRange();
57 var sum_xy =
0.0, sum_x =
0.0, sum_y =
0.0, sum_x2 =
0.0, num =
0;
58 for (var i =
0; i < g.numRows(); i++) {
59 var x = g.getValue(i,
0);
60 if (x < range[
0] || x
> range[
1]) continue;
62 var y = g.getValue(i, series);
63 if (y == null) continue;
76 var a = (sum_xy - sum_x * sum_y / num) / (sum_x2 - sum_x * sum_x / num);
77 var b = (sum_y - a * sum_x) / num;
79 coeffs[series] = [b, a];
80 if (typeof(console) != 'undefined') {
81 console.log(
"coeffs(" + series +
"): [" + b +
", " + a +
"]");
84 g.updateOptions({}); // forces a redraw.
87 function clearLines() {
88 for (var i =
0; i < coeffs.length; i++) coeffs[i] = null;
92 function drawLines(ctx, area, layout) {
93 if (typeof(g) == 'undefined') return; // won't be set on the initial draw.
95 var range = g.xAxisRange();
96 for (var i =
0; i < coeffs.length; i++) {
97 if (!coeffs[i]) continue;
106 // Scale up to percentages, rather than fractions.
110 var p1 = g.toDomCoords(x1, y1);
111 var p2 = g.toDomCoords(x2, y2);
113 var c = new RGBColor(g.getColors()[i -
1]);
114 c.r = Math.floor(
255 -
0.5 * (
255 - c.r));
115 c.g = Math.floor(
255 -
0.5 * (
255 - c.g));
116 c.b = Math.floor(
255 -
0.5 * (
255 - c.b));
117 var color = c.toHex();
119 ctx.strokeStyle = color;
122 ctx.moveTo(p1[
0], p1[
1]);
123 ctx.lineTo(p2[
0], p2[
1]);
132 <div style=
"position: absolute; left: 500px; top: 150px;">
133 <input type=button
style=
"color: green;" value=
"Regression (Y1)" onClick=
"regression(1)" />
135 <input type=button
style=
"color: blue;" value=
"Regression (Y2)" onClick=
"regression(2)" />
137 <input type=button
value=
"Clear Lines" onClick=
"clearLines()" />