4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Benchmarking for Plots with Many Points
</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>
17 <p>Plot which can be easily generated with different numbers of points for
18 benchmarking/profiling and improving performance of dygraphs.
</p>
21 <input type=
"radio" id=
"sine" name=
"group1" value=
"sine"
22 onclick=
"setDataType(this);" checked
> sinusoid function
23 <input type=
"radio" id=
"rand" name=
"group1" value=
"rand"
24 onclick=
"setDataType(this);"> random points
<br></p>
26 <input type=
"radio" id=
"aligned" name=
"timestamps" value=
"aligned" checked
> aligned
27 <input type=
"radio" id=
"unaligned" name=
"timestamps" value=
"unaligned"> unaligned
30 <input type=
"radio" id=
"numeric" name=
"x-axis-type" value=
"numeric" onclick=
"setXAxisType(this)" checked
> numeric
31 <input type=
"radio" id=
"dates" name=
"x-axis-type" value=
"date" onclick=
"setXAxisType(this)"> date/time
32 <p>Number of points per series (points):
33 <input type=
"text" id=
"points" size=
"20"></p>
34 <p>Number of series (series):
35 <input type=
"text" id=
"series" size=
"20"></p>
36 <p>Roll period (in points, rollPeriod):
37 <input type=
"text" id=
"rollPeriod" size=
"20"></p>
38 <p>Repetitions (repititions):
39 <input type=
"text" id=
"repetitions" size=
"20"></p>
40 <input type=
"button" value=
"Go!" onclick=
"updatePlot();">
45 <div id=
"message"></div>
46 <div id=
"metrics"></div>
47 <div id=
"metaperformance"></div>
49 <script type=
"text/javascript">
52 var dataType =
"sine";
53 var timestamps =
"aligned";
57 updatePlot = function() {
58 document.getElementById('message').innerHTML =
"";
59 var plotDiv = document.getElementById('plot');
60 plotDiv.innerHTML = 'Redrawing...';
61 var numeric = document.getElementById('numeric').checked;
63 parseInt(document.getElementById('points').value);
65 parseInt(document.getElementById('series').value);
67 parseInt(document.getElementById('repetitions').value);
70 var xmin = numeric ?
0.0 : Date.parse(
"2014/01/01");
71 var xmax = numeric ?
2.0 * Math.PI : Date.parse(
"2014/12/31");
73 var delta = (xmax - xmin) / (numPoints -
1);
74 var unalignmentDelta = delta / numSeries;
76 for (var i =
0; i < numPoints; ++i) {
77 var x = xmin + delta * i;
79 for (var j =
0; j < numSeries; j++) {
81 if (dataType ==
"rand") {
82 y = Math.pow(Math.random() - Math.random(),
7);
84 y = Math.sin(x + (j * adj));
88 if (timestamps ==
"aligned") {
91 for (var j =
0; j < numSeries; j++) {
92 var elemCopy = elem.slice(
0);
93 elemCopy[
0] += unalignmentDelta * j;
94 data[i*numSeries + j] = elemCopy;
97 if (!numeric) data[i][
0] = new Date(data[i][
0]);
100 for (var j =
0; j < numSeries; j++) {
101 labels.push(
"data-set-" + j);
103 var rollPeriod = parseInt(
104 document.getElementById('rollPeriod').value);
105 var opts = {labels: labels, rollPeriod: rollPeriod, timingName:
"x"};
106 var millisecondss = [];
107 for (var i =
0; i < repetitions; i++) {
109 graph.destroy(); // release memory from prior graph.
111 var start = new Date();
112 graph = new Dygraph(plotDiv, data, opts);
113 var end = new Date();
114 durations.push([numRuns++, end - start]);
115 millisecondss.push(end - start);
117 if (repetitions ==
1) {
118 document.getElementById('message').innerHTML =
119 "completed in " + (end - start) +
" milliseconds.";
122 for (var i =
0; i < millisecondss.length; i++) {
123 avg+=millisecondss[i];
125 avg/=millisecondss.length;
126 document.getElementById('message').innerHTML =
127 "Durations: " + millisecondss +
"<br>Average: " + avg;
130 if (durations.length
> 0) {
131 var start2 = new Date();
133 metrics = new Dygraph(
134 document.getElementById('metrics'),
137 highlightCircleSize:
4,
138 labels: [
"Date",
"ms" ]
141 metrics.updateOptions({file: durations});
143 var end2 = new Date();
144 document.getElementById(
"metaperformance").innerHTML =
145 "completed in " + (end2 - start2) +
" milliseconds.";
148 return millisecondss;
151 setDataType = function(radiobutton) {
152 dataType = radiobutton.value;
154 setTimestampType = function(radiobutton) {
155 timestamps = radiobutton.value;
166 // Parse the URL for parameters. Use it to override the values hash.
167 var href = window.location.href;
168 var qmindex = href.indexOf('?');
170 var entries = href.substr(qmindex +
1).split('&');
171 for (var idx =
0; idx < entries.length; idx++) {
172 var entry = entries[idx];
173 var eindex = entry.indexOf('=');
175 values[entry.substr(
0, eindex)] = entry.substr(eindex +
1);
180 var populate = function(name) {
181 document.getElementById(name).value = values[name];
184 var populateRadio = function(name) {
185 var val = values[name];
186 var elem = document.getElementById(val);
193 populate('rollPeriod');
194 populate('repetitions');
195 populateRadio('type');