make docs/dygraph-combined.js a symlink
[dygraphs.git] / dygraph.js
CommitLineData
6a1aa64f
DV
1// Copyright 2006 Dan Vanderkam (danvdk@gmail.com)
2// All Rights Reserved.
3
4/**
5 * @fileoverview Creates an interactive, zoomable graph based on a CSV file or
6 * string. DateGraph can handle multiple series with or without error bars. The
7 * date/value ranges will be automatically set. DateGraph uses the
8 * <canvas> tag, so it only works in FF1.5+.
9 * @author danvdk@gmail.com (Dan Vanderkam)
10
11 Usage:
12 <div id="graphdiv" style="width:800px; height:500px;"></div>
13 <script type="text/javascript">
14 new DateGraph(document.getElementById("graphdiv"),
15 "datafile.csv",
16 ["Series 1", "Series 2"],
17 { }); // options
18 </script>
19
20 The CSV file is of the form
21
22 YYYYMMDD,A1,B1,C1
23 YYYYMMDD,A2,B2,C2
24
25 If null is passed as the third parameter (series names), then the first line
26 of the CSV file is assumed to contain names for each series.
27
28 If the 'errorBars' option is set in the constructor, the input should be of
29 the form
30
31 YYYYMMDD,A1,sigmaA1,B1,sigmaB1,...
32 YYYYMMDD,A2,sigmaA2,B2,sigmaB2,...
33
34 If the 'fractions' option is set, the input should be of the form:
35
36 YYYYMMDD,A1/B1,A2/B2,...
37 YYYYMMDD,A1/B1,A2/B2,...
38
39 And error bars will be calculated automatically using a binomial distribution.
40
41 For further documentation and examples, see http://www/~danvk/dg/
42
43 */
44
45/**
46 * An interactive, zoomable graph
47 * @param {String | Function} file A file containing CSV data or a function that
48 * returns this data. The expected format for each line is
49 * YYYYMMDD,val1,val2,... or, if attrs.errorBars is set,
50 * YYYYMMDD,val1,stddev1,val2,stddev2,...
51 * @param {Array.<String>} labels Labels for the data series
52 * @param {Object} attrs Various other attributes, e.g. errorBars determines
53 * whether the input data contains error ranges.
54 */
55DateGraph = function(div, file, labels, attrs) {
56 if (arguments.length > 0)
57 this.__init__(div, file, labels, attrs);
58};
59
60DateGraph.NAME = "DateGraph";
61DateGraph.VERSION = "1.1";
62DateGraph.__repr__ = function() {
63 return "[" + this.NAME + " " + this.VERSION + "]";
64};
65DateGraph.toString = function() {
66 return this.__repr__();
67};
68
69// Various default values
70DateGraph.DEFAULT_ROLL_PERIOD = 1;
71DateGraph.DEFAULT_WIDTH = 480;
72DateGraph.DEFAULT_HEIGHT = 320;
73DateGraph.DEFAULT_STROKE_WIDTH = 1.0;
74DateGraph.AXIS_LINE_WIDTH = 0.3;
75
76/**
77 * Initializes the DateGraph. This creates a new DIV and constructs the PlotKit
78 * and interaction &lt;canvas&gt; inside of it. See the constructor for details
79 * on the parameters.
80 * @param {String | Function} file Source data
81 * @param {Array.<String>} labels Names of the data series
82 * @param {Object} attrs Miscellaneous other options
83 * @private
84 */
85DateGraph.prototype.__init__ = function(div, file, labels, attrs) {
86 // Copy the important bits into the object
87 this.maindiv_ = div;
88 this.labels_ = labels;
89 this.file_ = file;
90 this.rollPeriod_ = attrs.rollPeriod || DateGraph.DEFAULT_ROLL_PERIOD;
91 this.previousVerticalX_ = -1;
92 this.width_ = parseInt(div.style.width, 10);
93 this.height_ = parseInt(div.style.height, 10);
94 this.errorBars_ = attrs.errorBars || false;
95 this.fractions_ = attrs.fractions || false;
96 this.strokeWidth_ = attrs.strokeWidth || DateGraph.DEFAULT_STROKE_WIDTH;
97 this.dateWindow_ = attrs.dateWindow || null;
98 this.valueRange_ = attrs.valueRange || null;
99 this.labelsSeparateLines = attrs.labelsSeparateLines || false;
100 this.labelsDiv_ = attrs.labelsDiv || null;
101 this.labelsKMB_ = attrs.labelsKMB || false;
102 this.minTickSize_ = attrs.minTickSize || 0;
103 this.xValueParser_ = attrs.xValueParser || DateGraph.prototype.dateParser;
104 this.xValueFormatter_ = attrs.xValueFormatter ||
105 DateGraph.prototype.dateString_;
106 this.xTicker_ = attrs.xTicker || DateGraph.prototype.dateTicker;
107 this.sigma_ = attrs.sigma || 2.0;
108 this.wilsonInterval_ = attrs.wilsonInterval || true;
109 this.customBars_ = attrs.customBars || false;
110 this.attrs_ = attrs;
111
112 // Make a note of whether labels will be pulled from the CSV file.
113 this.labelsFromCSV_ = (this.labels_ == null);
114 if (this.labels_ == null)
115 this.labels_ = [];
116
117 // Prototype of the callback is "void clickCallback(event, date)"
118 this.clickCallback_ = attrs.clickCallback || null;
119
120 // Prototype of zoom callback is "void dragCallback(minDate, maxDate)"
121 this.zoomCallback_ = attrs.zoomCallback || null;
122
123 // Create the containing DIV and other interactive elements
124 this.createInterface_();
125
126 // Create the PlotKit grapher
127 this.layoutOptions_ = { 'errorBars': (this.errorBars_ || this.customBars_),
128 'xOriginIsZero': false };
129 MochiKit.Base.update(this.layoutOptions_, attrs);
130 this.setColors_(attrs);
131
132 this.layout_ = new DateGraphLayout(this.layoutOptions_);
133
134 this.renderOptions_ = { colorScheme: this.colors_,
135 strokeColor: null,
136 strokeWidth: this.strokeWidth_,
137 axisLabelFontSize: 14,
138 axisLineWidth: DateGraph.AXIS_LINE_WIDTH };
139 MochiKit.Base.update(this.renderOptions_, attrs);
140 this.plotter_ = new DateGraphCanvasRenderer(this.hidden_, this.layout_,
141 this.renderOptions_);
142
143 this.createStatusMessage_();
144 this.createRollInterface_();
145 this.createDragInterface_();
146
738fc797
DV
147 // connect(window, 'onload', this, function(e) { this.start_(); });
148 this.start_();
6a1aa64f
DV
149};
150
151/**
152 * Returns the current rolling period, as set by the user or an option.
153 * @return {Number} The number of days in the rolling window
154 */
155DateGraph.prototype.rollPeriod = function() {
156 return this.rollPeriod_;
157}
158
159/**
160 * Generates interface elements for the DateGraph: a containing div, a div to
161 * display the current point, and a textbox to adjust the rolling average
162 * period.
163 * @private
164 */
165DateGraph.prototype.createInterface_ = function() {
166 // Create the all-enclosing graph div
167 var enclosing = this.maindiv_;
168
169 this.graphDiv = MochiKit.DOM.DIV( { style: { 'width': this.width_ + "px",
170 'height': this.height_ + "px"
171 }});
172 appendChildNodes(enclosing, this.graphDiv);
173
174 // Create the canvas to store
175 var canvas = MochiKit.DOM.CANVAS;
176 this.canvas_ = canvas( { style: { 'position': 'absolute' },
177 width: this.width_,
178 height: this.height_});
179 appendChildNodes(this.graphDiv, this.canvas_);
180
181 this.hidden_ = this.createPlotKitCanvas_(this.canvas_);
182 connect(this.hidden_, 'onmousemove', this, function(e) { this.mouseMove_(e) });
183 connect(this.hidden_, 'onmouseout', this, function(e) { this.mouseOut_(e) });
184}
185
186/**
187 * Creates the canvas containing the PlotKit graph. Only plotkit ever draws on
188 * this particular canvas. All DateGraph work is done on this.canvas_.
189 * @param {Object} canvas The DateGraph canvas to over which to overlay the plot
190 * @return {Object} The newly-created canvas
191 * @private
192 */
193DateGraph.prototype.createPlotKitCanvas_ = function(canvas) {
194 var h = document.createElement("canvas");
195 h.style.position = "absolute";
196 h.style.top = canvas.style.top;
197 h.style.left = canvas.style.left;
198 h.width = this.width_;
199 h.height = this.height_;
200 MochiKit.DOM.appendChildNodes(this.graphDiv, h);
201 return h;
202};
203
204/**
205 * Generate a set of distinct colors for the data series. This is done with a
206 * color wheel. Saturation/Value are customizable, and the hue is
207 * equally-spaced around the color wheel. If a custom set of colors is
208 * specified, that is used instead.
209 * @param {Object} attrs Various attributes, e.g. saturation and value
210 * @private
211 */
212DateGraph.prototype.setColors_ = function(attrs) {
213 var num = this.labels_.length;
214 this.colors_ = [];
215 if (!attrs.colors) {
216 var sat = attrs.colorSaturation || 1.0;
217 var val = attrs.colorValue || 0.5;
218 for (var i = 1; i <= num; i++) {
219 var hue = (1.0*i/(1+num));
220 this.colors_.push( MochiKit.Color.Color.fromHSV(hue, sat, val) );
221 }
222 } else {
223 for (var i = 0; i < num; i++) {
224 var colorStr = attrs.colors[i % attrs.colors.length];
225 this.colors_.push( MochiKit.Color.Color.fromString(colorStr) );
226 }
227 }
228}
229
230/**
231 * Create the div that contains information on the selected point(s)
232 * This goes in the top right of the canvas, unless an external div has already
233 * been specified.
234 * @private
235 */
236DateGraph.prototype.createStatusMessage_ = function(){
237 if (!this.labelsDiv_) {
238 var divWidth = 250;
239 var messagestyle = { "style": {
240 "position": "absolute",
241 "fontSize": "14px",
242 "zIndex": 10,
243 "width": divWidth + "px",
244 "top": "0px",
245 "left": this.width_ - divWidth + "px",
246 "background": "white",
247 "textAlign": "left",
248 "overflow": "hidden"}};
249 this.labelsDiv_ = MochiKit.DOM.DIV(messagestyle);
250 MochiKit.DOM.appendChildNodes(this.graphDiv, this.labelsDiv_);
251 }
252};
253
254/**
255 * Create the text box to adjust the averaging period
256 * @return {Object} The newly-created text box
257 * @private
258 */
259DateGraph.prototype.createRollInterface_ = function() {
260 var padding = this.plotter_.options.padding;
738fc797
DV
261 if (typeof this.attrs_.showRoller == 'undefined') {
262 this.attrs_.showRoller = false;
263 }
264 var display = this.attrs_.showRoller ? "block" : "none";
6a1aa64f
DV
265 var textAttr = { "type": "text",
266 "size": "2",
267 "value": this.rollPeriod_,
268 "style": { "position": "absolute",
269 "zIndex": 10,
270 "top": (this.height_ - 25 - padding.bottom) + "px",
738fc797
DV
271 "left": (padding.left+1) + "px",
272 "display": display }
6a1aa64f
DV
273 };
274 var roller = MochiKit.DOM.INPUT(textAttr);
275 var pa = this.graphDiv;
276 MochiKit.DOM.appendChildNodes(pa, roller);
277 connect(roller, 'onchange', this,
278 function() { this.adjustRoll(roller.value); });
279 return roller;
280}
281
282/**
283 * Set up all the mouse handlers needed to capture dragging behavior for zoom
284 * events. Uses MochiKit.Signal to attach all the event handlers.
285 * @private
286 */
287DateGraph.prototype.createDragInterface_ = function() {
288 var self = this;
289
290 // Tracks whether the mouse is down right now
291 var mouseDown = false;
292 var dragStartX = null;
293 var dragStartY = null;
294 var dragEndX = null;
295 var dragEndY = null;
296 var prevEndX = null;
297
298 // Utility function to convert page-wide coordinates to canvas coords
67e650dc
DV
299 var px = 0;
300 var py = 0;
6a1aa64f
DV
301 var getX = function(e) { return e.mouse().page.x - px };
302 var getY = function(e) { return e.mouse().page.y - py };
303
304 // Draw zoom rectangles when the mouse is down and the user moves around
305 connect(this.hidden_, 'onmousemove', function(event) {
306 if (mouseDown) {
307 dragEndX = getX(event);
308 dragEndY = getY(event);
309
310 self.drawZoomRect_(dragStartX, dragEndX, prevEndX);
311 prevEndX = dragEndX;
312 }
313 });
314
315 // Track the beginning of drag events
316 connect(this.hidden_, 'onmousedown', function(event) {
317 mouseDown = true;
67e650dc
DV
318 px = PlotKit.Base.findPosX(self.canvas_);
319 py = PlotKit.Base.findPosY(self.canvas_);
6a1aa64f
DV
320 dragStartX = getX(event);
321 dragStartY = getY(event);
322 });
323
324 // If the user releases the mouse button during a drag, but not over the
325 // canvas, then it doesn't count as a zooming action.
326 connect(document, 'onmouseup', this, function(event) {
327 if (mouseDown) {
328 mouseDown = false;
329 dragStartX = null;
330 dragStartY = null;
331 }
332 });
333
334 // Temporarily cancel the dragging event when the mouse leaves the graph
335 connect(this.hidden_, 'onmouseout', this, function(event) {
336 if (mouseDown) {
337 dragEndX = null;
338 dragEndY = null;
339 }
340 });
341
342 // If the mouse is released on the canvas during a drag event, then it's a
343 // zoom. Only do the zoom if it's over a large enough area (>= 10 pixels)
344 connect(this.hidden_, 'onmouseup', this, function(event) {
345 if (mouseDown) {
346 mouseDown = false;
347 dragEndX = getX(event);
348 dragEndY = getY(event);
349 var regionWidth = Math.abs(dragEndX - dragStartX);
350 var regionHeight = Math.abs(dragEndY - dragStartY);
351
352 if (regionWidth < 2 && regionHeight < 2 &&
353 self.clickCallback_ != null &&
354 self.lastx_ != undefined) {
355 self.clickCallback_(event, new Date(self.lastx_));
356 }
357
358 if (regionWidth >= 10) {
359 self.doZoom_(Math.min(dragStartX, dragEndX),
360 Math.max(dragStartX, dragEndX));
361 } else {
362 self.canvas_.getContext("2d").clearRect(0, 0,
363 self.canvas_.width,
364 self.canvas_.height);
365 }
366
367 dragStartX = null;
368 dragStartY = null;
369 }
370 });
371
372 // Double-clicking zooms back out
373 connect(this.hidden_, 'ondblclick', this, function(event) {
374 self.dateWindow_ = null;
375 self.drawGraph_(self.rawData_);
376 var minDate = self.rawData_[0][0];
377 var maxDate = self.rawData_[self.rawData_.length - 1][0];
67e650dc
DV
378 if (self.zoomCallback_) {
379 self.zoomCallback_(minDate, maxDate);
380 }
6a1aa64f
DV
381 });
382};
383
384/**
385 * Draw a gray zoom rectangle over the desired area of the canvas. Also clears
386 * up any previous zoom rectangles that were drawn. This could be optimized to
387 * avoid extra redrawing, but it's tricky to avoid interactions with the status
388 * dots.
389 * @param {Number} startX The X position where the drag started, in canvas
390 * coordinates.
391 * @param {Number} endX The current X position of the drag, in canvas coords.
392 * @param {Number} prevEndX The value of endX on the previous call to this
393 * function. Used to avoid excess redrawing
394 * @private
395 */
396DateGraph.prototype.drawZoomRect_ = function(startX, endX, prevEndX) {
397 var ctx = this.canvas_.getContext("2d");
398
399 // Clean up from the previous rect if necessary
400 if (prevEndX) {
401 ctx.clearRect(Math.min(startX, prevEndX), 0,
402 Math.abs(startX - prevEndX), this.height_);
403 }
404
405 // Draw a light-grey rectangle to show the new viewing area
406 if (endX && startX) {
407 ctx.fillStyle = "rgba(128,128,128,0.33)";
408 ctx.fillRect(Math.min(startX, endX), 0,
409 Math.abs(endX - startX), this.height_);
410 }
411};
412
413/**
414 * Zoom to something containing [lowX, highX]. These are pixel coordinates
415 * in the canvas. The exact zoom window may be slightly larger if there are no
416 * data points near lowX or highX. This function redraws the graph.
417 * @param {Number} lowX The leftmost pixel value that should be visible.
418 * @param {Number} highX The rightmost pixel value that should be visible.
419 * @private
420 */
421DateGraph.prototype.doZoom_ = function(lowX, highX) {
422 // Find the earliest and latest dates contained in this canvasx range.
423 var points = this.layout_.points;
424 var minDate = null;
425 var maxDate = null;
426 // Find the nearest [minDate, maxDate] that contains [lowX, highX]
427 for (var i = 0; i < points.length; i++) {
428 var cx = points[i].canvasx;
429 var x = points[i].xval;
430 if (cx < lowX && (minDate == null || x > minDate)) minDate = x;
431 if (cx > highX && (maxDate == null || x < maxDate)) maxDate = x;
432 }
433 // Use the extremes if either is missing
434 if (minDate == null) minDate = points[0].xval;
435 if (maxDate == null) maxDate = points[points.length-1].xval;
436
437 this.dateWindow_ = [minDate, maxDate];
438 this.drawGraph_(this.rawData_);
67e650dc
DV
439 if (this.zoomCallback_) {
440 this.zoomCallback_(minDate, maxDate);
441 }
6a1aa64f
DV
442};
443
444/**
445 * When the mouse moves in the canvas, display information about a nearby data
446 * point and draw dots over those points in the data series. This function
447 * takes care of cleanup of previously-drawn dots.
448 * @param {Object} event The mousemove event from the browser.
449 * @private
450 */
451DateGraph.prototype.mouseMove_ = function(event) {
452 var canvasx = event.mouse().page.x - PlotKit.Base.findPosX(this.hidden_);
453 var points = this.layout_.points;
454
455 var lastx = -1;
456 var lasty = -1;
457
458 // Loop through all the points and find the date nearest to our current
459 // location.
460 var minDist = 1e+100;
461 var idx = -1;
462 for (var i = 0; i < points.length; i++) {
463 var dist = Math.abs(points[i].canvasx - canvasx);
464 if (dist > minDist) break;
465 minDist = dist;
466 idx = i;
467 }
468 if (idx >= 0) lastx = points[idx].xval;
469 // Check that you can really highlight the last day's data
470 if (canvasx > points[points.length-1].canvasx)
471 lastx = points[points.length-1].xval;
472
473 // Extract the points we've selected
474 var selPoints = [];
475 for (var i = 0; i < points.length; i++) {
476 if (points[i].xval == lastx) {
477 selPoints.push(points[i]);
478 }
479 }
480
481 // Clear the previously drawn vertical, if there is one
482 var circleSize = 3;
483 var ctx = this.canvas_.getContext("2d");
484 if (this.previousVerticalX_ >= 0) {
485 var px = this.previousVerticalX_;
486 ctx.clearRect(px - circleSize - 1, 0, 2 * circleSize + 2, this.height_);
487 }
488
489 if (selPoints.length > 0) {
490 var canvasx = selPoints[0].canvasx;
491
492 // Set the status message to indicate the selected point(s)
493 var replace = this.xValueFormatter_(lastx) + ":";
494 var clen = this.colors_.length;
495 for (var i = 0; i < selPoints.length; i++) {
496 if (this.labelsSeparateLines) {
497 replace += "<br/>";
498 }
499 var point = selPoints[i];
500 replace += " <b><font color='" + this.colors_[i%clen].toHexString() + "'>"
501 + point.name + "</font></b>:"
502 + this.round_(point.yval, 2);
503 }
504 this.labelsDiv_.innerHTML = replace;
505
506 // Save last x position for callbacks.
507 this.lastx_ = lastx;
508
509 // Draw colored circles over the center of each selected point
510 ctx.save()
511 for (var i = 0; i < selPoints.length; i++) {
512 ctx.beginPath();
513 ctx.fillStyle = this.colors_[i%clen].toRGBString();
514 ctx.arc(canvasx, selPoints[i%clen].canvasy, circleSize, 0, 360, false);
515 ctx.fill();
516 }
517 ctx.restore();
518
519 this.previousVerticalX_ = canvasx;
520 }
521};
522
523/**
524 * The mouse has left the canvas. Clear out whatever artifacts remain
525 * @param {Object} event the mouseout event from the browser.
526 * @private
527 */
528DateGraph.prototype.mouseOut_ = function(event) {
529 // Get rid of the overlay data
530 var ctx = this.canvas_.getContext("2d");
531 ctx.clearRect(0, 0, this.width_, this.height_);
532 this.labelsDiv_.innerHTML = "";
533};
534
535/**
536 * Convert a JS date (millis since epoch) to YYYY/MM/DD
537 * @param {Number} date The JavaScript date (ms since epoch)
538 * @return {String} A date of the form "YYYY/MM/DD"
539 * @private
540 */
541DateGraph.prototype.dateString_ = function(date) {
542 var d = new Date(date);
543
544 // Get the year:
545 var year = "" + d.getFullYear();
546 // Get a 0 padded month string
547 var month = "" + (d.getMonth() + 1); //months are 0-offset, sigh
548 if (month.length < 2) month = "0" + month;
549 // Get a 0 padded day string
550 var day = "" + d.getDate();
551 if (day.length < 2) day = "0" + day;
552
553 return year + "/" + month + "/" + day;
554};
555
556/**
557 * Round a number to the specified number of digits past the decimal point.
558 * @param {Number} num The number to round
559 * @param {Number} places The number of decimals to which to round
560 * @return {Number} The rounded number
561 * @private
562 */
563DateGraph.prototype.round_ = function(num, places) {
564 var shift = Math.pow(10, places);
565 return Math.round(num * shift)/shift;
566};
567
568/**
569 * Fires when there's data available to be graphed.
570 * @param {String} data Raw CSV data to be plotted
571 * @private
572 */
573DateGraph.prototype.loadedEvent_ = function(data) {
574 this.rawData_ = this.parseCSV_(data);
575 this.drawGraph_(this.rawData_);
576};
577
578DateGraph.prototype.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
579 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
580DateGraph.prototype.quarters = ["Jan", "Apr", "Jul", "Oct"];
581
582/**
583 * Add ticks on the x-axis representing years, months, quarters, weeks, or days
584 * @private
585 */
586DateGraph.prototype.addXTicks_ = function() {
587 // Determine the correct ticks scale on the x-axis: quarterly, monthly, ...
588 var startDate, endDate;
589 if (this.dateWindow_) {
590 startDate = this.dateWindow_[0];
591 endDate = this.dateWindow_[1];
592 } else {
593 startDate = this.rawData_[0][0];
594 endDate = this.rawData_[this.rawData_.length - 1][0];
595 }
596
597 var xTicks = this.xTicker_(startDate, endDate);
598 this.layout_.updateOptions({xTicks: xTicks});
599}
600
601/**
602 * Add ticks to the x-axis based on a date range.
603 * @param {Number} startDate Start of the date window (millis since epoch)
604 * @param {Number} endDate End of the date window (millis since epoch)
605 * @return {Array.<Object>} Array of {label, value} tuples.
606 * @public
607 */
608DateGraph.prototype.dateTicker = function(startDate, endDate) {
609 var ONE_DAY = 24*60*60*1000;
610 startDate = startDate / ONE_DAY;
611 endDate = endDate / ONE_DAY;
612 var dateSpan = endDate - startDate;
613
614 var scale = [];
615 var isMonthly = false;
616 var yearMod = 1;
617 if (dateSpan > 30 * 366) { // decadal
618 isMonthly = true;
619 scale = ["Jan"];
620 yearMod = 10;
621 } else if (dateSpan > 4*366) { // annual
622 scale = ["Jan"];
623 isMonthly = true;
624 } else if (dateSpan > 366) { // quarterly
625 scale = this.quarters;
626 isMonthly = true;
627 } else if (dateSpan > 40) { // monthly
628 scale = this.months;
629 isMonthly = true;
630 } else if (dateSpan > 10) { // weekly
631 for (var week = startDate - 14; week < endDate + 14; week += 7) {
632 scale.push(week * ONE_DAY);
633 }
2769de62 634 } else if (dateSpan > 1) { // daily
6a1aa64f
DV
635 for (var day = startDate - 14; day < endDate + 14; day += 1) {
636 scale.push(day * ONE_DAY);
637 }
2769de62
DV
638 } else { // hourly
639 for (var hour = (startDate - 1) * 24;
640 hour < (endDate + 1) * 24; hour += 1) {
641 scale.push(hour * 60*60*1000);
642 }
6a1aa64f
DV
643 }
644
645 var xTicks = [];
646
647 if (isMonthly) {
648 var startYear = 1900 + (new Date(startDate* ONE_DAY)).getYear();
649 var endYear = 1900 + (new Date(endDate * ONE_DAY)).getYear();
650 for (var i = startYear; i <= endYear; i++) {
651 if (i % yearMod != 0) continue;
652 for (var j = 0; j < scale.length; j++ ) {
653 var date = Date.parse(scale[j] + " 1, " + i);
654 xTicks.push( {label: scale[j] + "'" + ("" + i).substr(2,2), v: date } );
655 }
656 }
657 } else {
658 for (var i = 0; i < scale.length; i++) {
659 var date = new Date(scale[i]);
660 var year = date.getFullYear().toString();
661 var label = this.months[date.getMonth()] + date.getDate();
662 label += "'" + year.substr(year.length - 2, 2);
663 xTicks.push( {label: label, v: date} );
664 }
665 }
666 return xTicks;
667};
668
669/**
670 * Add ticks when the x axis has numbers on it (instead of dates)
671 * @param {Number} startDate Start of the date window (millis since epoch)
672 * @param {Number} endDate End of the date window (millis since epoch)
673 * @return {Array.<Object>} Array of {label, value} tuples.
674 * @public
675 */
676DateGraph.prototype.numericTicks = function(minV, maxV) {
677 var scale;
678 if (maxV <= 0.0) {
679 scale = 1.0;
680 } else {
681 scale = Math.pow( 10, Math.floor(Math.log(maxV)/Math.log(10.0)) );
682 }
683
684 // Add a smallish number of ticks at human-friendly points
685 var nTicks = (maxV - minV) / scale;
686 while (2 * nTicks < 20) {
687 nTicks *= 2;
688 }
689 if ((maxV - minV) / nTicks < this.minTickSize_) {
690 nTicks = this.round_((maxV - minV) / this.minTickSize_, 1);
691 }
692
693 // Construct labels for the ticks
694 var ticks = [];
695 for (var i = 0; i <= nTicks; i++) {
696 var tickV = minV + i * (maxV - minV) / nTicks;
697 var label = this.round_(tickV, 2);
698 if (this.labelsKMB_) {
699 var k = 1000;
700 if (tickV >= k*k*k) {
701 label = this.round_(tickV/(k*k*k), 1) + "B";
702 } else if (tickV >= k*k) {
703 label = this.round_(tickV/(k*k), 1) + "M";
704 } else if (tickV >= k) {
705 label = this.round_(tickV/k, 1) + "K";
706 }
707 }
708 ticks.push( {label: label, v: tickV} );
709 }
710 return ticks;
711};
712
713/**
714 * Adds appropriate ticks on the y-axis
715 * @param {Number} minY The minimum Y value in the data set
716 * @param {Number} maxY The maximum Y value in the data set
717 * @private
718 */
719DateGraph.prototype.addYTicks_ = function(minY, maxY) {
720 // Set the number of ticks so that the labels are human-friendly.
721 var ticks = this.numericTicks(minY, maxY);
722 this.layout_.updateOptions( { yAxis: [minY, maxY],
723 yTicks: ticks } );
724};
725
726/**
727 * Update the graph with new data. Data is in the format
728 * [ [date1, val1, val2, ...], [date2, val1, val2, ...] if errorBars=false
729 * or, if errorBars=true,
730 * [ [date1, [val1,stddev1], [val2,stddev2], ...], [date2, ...], ...]
731 * @param {Array.<Object>} data The data (see above)
732 * @private
733 */
734DateGraph.prototype.drawGraph_ = function(data) {
735 var maxY = null;
736 this.layout_.removeAllDatasets();
737 // Loop over all fields in the dataset
738 for (var i = 1; i < data[0].length; i++) {
739 var series = [];
740 for (var j = 0; j < data.length; j++) {
741 var date = data[j][0];
742 series[j] = [date, data[j][i]];
743 }
744 series = this.rollingAverage(series, this.rollPeriod_);
745
746 // Prune down to the desired range, if necessary (for zooming)
747 var bars = this.errorBars_ || this.customBars_;
748 if (this.dateWindow_) {
749 var low = this.dateWindow_[0];
750 var high= this.dateWindow_[1];
751 var pruned = [];
752 for (var k = 0; k < series.length; k++) {
753 if (series[k][0] >= low && series[k][0] <= high) {
754 pruned.push(series[k]);
755 var y = bars ? series[k][1][0] : series[k][1];
756 if (maxY == null || y > maxY) maxY = y;
757 }
758 }
759 series = pruned;
760 } else {
761 for (var j = 0; j < series.length; j++) {
762 var y = bars ? series[j][1][0] : series[j][1];
763 if (maxY == null || y > maxY) {
764 maxY = bars ? y + series[j][1][1] : y;
765 }
766 }
767 }
768
769 if (bars) {
770 var vals = [];
771 for (var j=0; j<series.length; j++)
772 vals[j] = [series[j][0],
773 series[j][1][0], series[j][1][1], series[j][1][2]];
774 this.layout_.addDataset(this.labels_[i - 1], vals);
775 } else {
776 this.layout_.addDataset(this.labels_[i - 1], series);
777 }
778 }
779
780 // Use some heuristics to come up with a good maxY value, unless it's been
781 // set explicitly by the user.
782 if (this.valueRange_ != null) {
783 this.addYTicks_(this.valueRange_[0], this.valueRange_[1]);
784 } else {
785 // Add some padding and round up to an integer to be human-friendly.
786 maxY *= 1.1;
787 if (maxY <= 0.0) maxY = 1.0;
788 else {
789 var scale = Math.pow(10, Math.floor(Math.log(maxY) / Math.log(10.0)));
790 maxY = scale * Math.ceil(maxY / scale);
791 }
792 this.addYTicks_(0, maxY);
793 }
794
795 this.addXTicks_();
796
797 // Tell PlotKit to use this new data and render itself
798 this.layout_.evaluateWithError();
799 this.plotter_.clear();
800 this.plotter_.render();
801 this.canvas_.getContext('2d').clearRect(0, 0,
802 this.canvas_.width, this.canvas_.height);
803};
804
805/**
806 * Calculates the rolling average of a data set.
807 * If originalData is [label, val], rolls the average of those.
808 * If originalData is [label, [, it's interpreted as [value, stddev]
809 * and the roll is returned in the same form, with appropriately reduced
810 * stddev for each value.
811 * Note that this is where fractional input (i.e. '5/10') is converted into
812 * decimal values.
813 * @param {Array} originalData The data in the appropriate format (see above)
814 * @param {Number} rollPeriod The number of days over which to average the data
815 */
816DateGraph.prototype.rollingAverage = function(originalData, rollPeriod) {
817 if (originalData.length < 2)
818 return originalData;
819 var rollPeriod = Math.min(rollPeriod, originalData.length - 1);
820 var rollingData = [];
821 var sigma = this.sigma_;
822
823 if (this.fractions_) {
824 var num = 0;
825 var den = 0; // numerator/denominator
826 var mult = 100.0;
827 for (var i = 0; i < originalData.length; i++) {
828 num += originalData[i][1][0];
829 den += originalData[i][1][1];
830 if (i - rollPeriod >= 0) {
831 num -= originalData[i - rollPeriod][1][0];
832 den -= originalData[i - rollPeriod][1][1];
833 }
834
835 var date = originalData[i][0];
836 var value = den ? num / den : 0.0;
837 if (this.errorBars_) {
838 if (this.wilsonInterval_) {
839 // For more details on this confidence interval, see:
840 // http://en.wikipedia.org/wiki/Binomial_confidence_interval
841 if (den) {
842 var p = value < 0 ? 0 : value, n = den;
843 var pm = sigma * Math.sqrt(p*(1-p)/n + sigma*sigma/(4*n*n));
844 var denom = 1 + sigma * sigma / den;
845 var low = (p + sigma * sigma / (2 * den) - pm) / denom;
846 var high = (p + sigma * sigma / (2 * den) + pm) / denom;
847 rollingData[i] = [date,
848 [p * mult, (p - low) * mult, (high - p) * mult]];
849 } else {
850 rollingData[i] = [date, [0, 0, 0]];
851 }
852 } else {
853 var stddev = den ? sigma * Math.sqrt(value * (1 - value) / den) : 1.0;
854 rollingData[i] = [date, [mult * value, mult * stddev, mult * stddev]];
855 }
856 } else {
857 rollingData[i] = [date, mult * value];
858 }
859 }
860 } else if (this.customBars_) {
f6885d6a
DV
861 var low = 0;
862 var mid = 0;
863 var high = 0;
864 var count = 0;
6a1aa64f
DV
865 for (var i = 0; i < originalData.length; i++) {
866 var data = originalData[i][1];
867 var y = data[1];
868 rollingData[i] = [originalData[i][0], [y, y - data[0], data[2] - y]];
f6885d6a
DV
869
870 low += data[0];
871 mid += y;
872 high += data[2];
873 count += 1;
874 if (i - rollPeriod >= 0) {
875 var prev = originalData[i - rollPeriod];
876 low -= prev[1][0];
877 mid -= prev[1][1];
878 high -= prev[1][2];
879 count -= 1;
880 }
881 rollingData[i] = [originalData[i][0], [ 1.0 * mid / count,
882 1.0 * (mid - low) / count,
883 1.0 * (high - mid) / count ]];
2769de62 884 }
6a1aa64f
DV
885 } else {
886 // Calculate the rolling average for the first rollPeriod - 1 points where
887 // there is not enough data to roll over the full number of days
888 var num_init_points = Math.min(rollPeriod - 1, originalData.length - 2);
889 if (!this.errorBars_){
890 for (var i = 0; i < num_init_points; i++) {
891 var sum = 0;
892 for (var j = 0; j < i + 1; j++)
893 sum += originalData[j][1];
894 rollingData[i] = [originalData[i][0], sum / (i + 1)];
895 }
896 // Calculate the rolling average for the remaining points
897 for (var i = Math.min(rollPeriod - 1, originalData.length - 2);
898 i < originalData.length;
899 i++) {
900 var sum = 0;
901 for (var j = i - rollPeriod + 1; j < i + 1; j++)
902 sum += originalData[j][1];
903 rollingData[i] = [originalData[i][0], sum / rollPeriod];
904 }
905 } else {
906 for (var i = 0; i < num_init_points; i++) {
907 var sum = 0;
908 var variance = 0;
909 for (var j = 0; j < i + 1; j++) {
910 sum += originalData[j][1][0];
911 variance += Math.pow(originalData[j][1][1], 2);
912 }
913 var stddev = Math.sqrt(variance)/(i+1);
914 rollingData[i] = [originalData[i][0],
915 [sum/(i+1), sigma * stddev, sigma * stddev]];
916 }
917 // Calculate the rolling average for the remaining points
918 for (var i = Math.min(rollPeriod - 1, originalData.length - 2);
919 i < originalData.length;
920 i++) {
921 var sum = 0;
922 var variance = 0;
923 for (var j = i - rollPeriod + 1; j < i + 1; j++) {
924 sum += originalData[j][1][0];
925 variance += Math.pow(originalData[j][1][1], 2);
926 }
927 var stddev = Math.sqrt(variance) / rollPeriod;
928 rollingData[i] = [originalData[i][0],
929 [sum / rollPeriod, sigma * stddev, sigma * stddev]];
930 }
931 }
932 }
933
934 return rollingData;
935};
936
937/**
938 * Parses a date, returning the number of milliseconds since epoch. This can be
939 * passed in as an xValueParser in the DateGraph constructor.
940 * @param {String} A date in YYYYMMDD format.
941 * @return {Number} Milliseconds since epoch.
942 * @public
943 */
944DateGraph.prototype.dateParser = function(dateStr) {
945 var dateStrSlashed;
2769de62 946 if (dateStr.length == 10 && dateStr.search("-") != -1) { // e.g. '2009-07-12'
6a1aa64f 947 dateStrSlashed = dateStr.replace("-", "/", "g");
353a0294
DV
948 while (dateStrSlashed.search("-") != -1) {
949 dateStrSlashed = dateStrSlashed.replace("-", "/");
950 }
2769de62
DV
951 return Date.parse(dateStrSlashed);
952 } else if (dateStr.length == 8) { // e.g. '20090712'
6a1aa64f
DV
953 dateStrSlashed = dateStr.substr(0,4) + "/" + dateStr.substr(4,2)
954 + "/" + dateStr.substr(6,2);
2769de62
DV
955 return Date.parse(dateStrSlashed);
956 } else {
957 // Any format that Date.parse will accept, e.g. "2009/07/12" or
958 // "2009/07/12 12:34:56"
959 return Date.parse(dateStr);
6a1aa64f 960 }
6a1aa64f
DV
961};
962
963/**
964 * Parses a string in a special csv format. We expect a csv file where each
965 * line is a date point, and the first field in each line is the date string.
966 * We also expect that all remaining fields represent series.
967 * if this.errorBars_ is set, then interpret the fields as:
968 * date, series1, stddev1, series2, stddev2, ...
969 * @param {Array.<Object>} data See above.
970 * @private
971 */
972DateGraph.prototype.parseCSV_ = function(data) {
973 var ret = [];
974 var lines = data.split("\n");
975 var start = this.labelsFromCSV_ ? 1 : 0;
976 if (this.labelsFromCSV_) {
977 var labels = lines[0].split(",");
978 labels.shift(); // a "date" parameter is assumed.
979 this.labels_ = labels;
980 // regenerate automatic colors.
981 this.setColors_(this.attrs_);
982 this.renderOptions_.colorScheme = this.colors_;
983 MochiKit.Base.update(this.plotter_.options, this.renderOptions_);
984 MochiKit.Base.update(this.layoutOptions_, this.attrs_);
985 }
986
987 for (var i = start; i < lines.length; i++) {
988 var line = lines[i];
989 if (line.length == 0) continue; // skip blank lines
990 var inFields = line.split(',');
991 if (inFields.length < 2)
992 continue;
993
994 var fields = [];
995 fields[0] = this.xValueParser_(inFields[0]);
996
997 // If fractions are expected, parse the numbers as "A/B"
998 if (this.fractions_) {
999 for (var j = 1; j < inFields.length; j++) {
1000 // TODO(danvk): figure out an appropriate way to flag parse errors.
1001 var vals = inFields[j].split("/");
1002 fields[j] = [parseFloat(vals[0]), parseFloat(vals[1])];
1003 }
1004 } else if (this.errorBars_) {
1005 // If there are error bars, values are (value, stddev) pairs
1006 for (var j = 1; j < inFields.length; j += 2)
1007 fields[(j + 1) / 2] = [parseFloat(inFields[j]),
1008 parseFloat(inFields[j + 1])];
1009 } else if (this.customBars_) {
1010 // Bars are a low;center;high tuple
1011 for (var j = 1; j < inFields.length; j++) {
1012 var vals = inFields[j].split(";");
1013 fields[j] = [ parseFloat(vals[0]),
1014 parseFloat(vals[1]),
1015 parseFloat(vals[2]) ];
1016 }
1017 } else {
1018 // Values are just numbers
1019 for (var j = 1; j < inFields.length; j++)
1020 fields[j] = parseFloat(inFields[j]);
1021 }
1022 ret.push(fields);
1023 }
1024 return ret;
1025};
1026
1027/**
1028 * Get the CSV data. If it's in a function, call that function. If it's in a
1029 * file, do an XMLHttpRequest to get it.
1030 * @private
1031 */
1032DateGraph.prototype.start_ = function() {
1033 if (typeof this.file_ == 'function') {
1034 // Stubbed out to allow this to run off a filesystem
1035 this.loadedEvent_(this.file_());
1036 } else {
1037 var req = new XMLHttpRequest();
1038 var caller = this;
1039 req.onreadystatechange = function () {
1040 if (req.readyState == 4) {
1041 if (req.status == 200) {
1042 caller.loadedEvent_(req.responseText);
1043 }
1044 }
1045 };
1046
1047 req.open("GET", this.file_, true);
1048 req.send(null);
1049 }
1050};
1051
1052/**
1053 * Changes various properties of the graph. These can include:
1054 * <ul>
1055 * <li>file: changes the source data for the graph</li>
1056 * <li>errorBars: changes whether the data contains stddev</li>
1057 * </ul>
1058 * @param {Object} attrs The new properties and values
1059 */
1060DateGraph.prototype.updateOptions = function(attrs) {
1061 if (attrs.errorBars) {
1062 this.errorBars_ = attrs.errorBars;
1063 }
1064 if (attrs.customBars) {
1065 this.customBars_ = attrs.customBars;
1066 }
1067 if (attrs.strokeWidth) {
1068 this.strokeWidth_ = attrs.strokeWidth;
1069 }
1070 if (attrs.rollPeriod) {
1071 this.rollPeriod_ = attrs.rollPeriod;
1072 }
1073 if (attrs.dateWindow) {
1074 this.dateWindow_ = attrs.dateWindow;
1075 }
1076 if (attrs.valueRange) {
1077 this.valueRange_ = attrs.valueRange;
1078 }
1079 if (attrs.minTickSize) {
1080 this.minTickSize_ = attrs.minTickSize;
1081 }
1082 if (typeof(attrs.labels) != 'undefined') {
1083 this.labels_ = attrs.labels;
1084 this.labelsFromCSV_ = (attrs.labels == null);
1085 }
1086 this.layout_.updateOptions({ 'errorBars': this.errorBars_ });
1087 if (attrs['file'] && attrs['file'] != this.file_) {
1088 this.file_ = attrs['file'];
1089 this.start_();
1090 } else {
1091 this.drawGraph_(this.rawData_);
1092 }
1093};
1094
1095/**
1096 * Adjusts the number of days in the rolling average. Updates the graph to
1097 * reflect the new averaging period.
1098 * @param {Number} length Number of days over which to average the data.
1099 */
1100DateGraph.prototype.adjustRoll = function(length) {
1101 this.rollPeriod_ = length;
1102 this.drawGraph_(this.rawData_);
1103};