X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Flinear-regression.html;h=bc629a0e7c72c6a4cacc63bf9bf35e768664ed7a;hb=606568fef36a321148399da4c58a05e2753ac2f9;hp=e3636c12543f5691f80affa948e6bae158e4cba7;hpb=2a07b0ad9869c9116c06fe1c9084da7fec0923bd;p=dygraphs.git diff --git a/tests/linear-regression.html b/tests/linear-regression.html index e3636c1..bc629a0 100644 --- a/tests/linear-regression.html +++ b/tests/linear-regression.html @@ -1,8 +1,9 @@ + Linear Regression @@ -35,7 +36,8 @@ { labels: ['X', 'Y1', 'Y2'], underlayCallback: drawLines, - drawPoints: true + drawPoints: true, + strokeWidth: 0.0 } ); @@ -54,6 +56,10 @@ var y = g.getValue(i, series); if (y == null) continue; + if (y.length == 2) { + // using fractions + y = y[0] / y[1]; + } num++; sum_x += x; @@ -66,7 +72,7 @@ var b = (sum_y - a * sum_x) / num; coeffs[series] = [b, a]; - if (console) { + if (typeof(console) != 'undefined') { console.log("coeffs(" + series + "): [" + b + ", " + a + "]"); } @@ -95,7 +101,11 @@ var p1 = g.toDomCoords(x1, y1); var p2 = g.toDomCoords(x2, y2); - var color = g.getColors()[i - 1]; + var c = new RGBColor(g.getColors()[i - 1]); + c.r = Math.floor(255 - 0.5 * (255 - c.r)); + c.g = Math.floor(255 - 0.5 * (255 - c.g)); + c.b = Math.floor(255 - 0.5 * (255 - c.b)); + var color = c.toHex(); ctx.save(); ctx.strokeStyle = color; ctx.lineWidth = 1.0;