Check for new options before updating synchronised graphs (Fixes #760)
[dygraphs.git] / docs / tutorial.html
CommitLineData
14403441
DV
1<!--#include virtual="header.html" -->
2
3<style>
4 .annotation {
5 font-size: 12px !important;
6 }
7</style>
8
fd81b1d8 9<p>To use dygraphs, include the <code><a href="download.html">dygraph-combined-dev.js</a></code> JavaScript file and instantiate a <code>Dygraph</code> object.</p>
14403441
DV
10
11<p>Here's a basic example to get things started:</p>
12
13<div class="example" style="clear:both;">
14 <div class="codeblock" style="float:left;width:400px;">
15 <h3 style="text-align:center">HTML</h3>
16 <pre>
17&lt;html&gt;
18&lt;head&gt;
19&lt;script type=&quot;text/javascript&quot;
fd81b1d8 20 src=&quot;dygraph-combined-dev.js&quot;&gt;&lt;/script&gt;
14403441
DV
21&lt;/head&gt;
22&lt;body&gt;
23&lt;div id=&quot;graphdiv&quot;&gt;&lt;/div&gt;
24&lt;script type=&quot;text/javascript&quot;&gt;
25 g = new Dygraph(
26
27 // containing div
28 document.getElementById(&quot;graphdiv&quot;),
29
30 // CSV or path to a CSV file.
31 &quot;Date,Temperature\n&quot; +
32 &quot;2008-05-07,75\n&quot; +
33 &quot;2008-05-08,70\n&quot; +
34 &quot;2008-05-09,80\n&quot;
35
36 );
37&lt;/script&gt;
38&lt;/body&gt;
39&lt;/html&gt;
40</pre>
41 </div>
42 <div class="codeoutput" style="float:left;">
43 <h3 style="text-align:center">OUTPUT</h3>
44 <div id="graphdiv"></div>
45 <script type="text/javascript">
46 g = new Dygraph(
47
48 // containing div
49 document.getElementById("graphdiv"),
50
51 // CSV or path to a CSV file.
52 "Date,Temperature\n" +
53 "2008-05-07,75\n" +
54 "2008-05-08,70\n" +
55 "2008-05-09,80\n"
56 );
57 </script>
58 </div>
59</div>
60
61<p style="clear:both">In order to keep this example self-contained, the second parameter is raw CSV data. The dygraphs library parses this data (including column headers), resizes its container to a reasonable default, calculates appropriate axis ranges and tick marks and draws the graph.</p>
62
63<p>In most applications, it makes more sense to include a CSV file instead. If the second parameter to the constructor doesn't contain a newline, it will be interpreted as the path to a CSV file. The Dygraph will perform an XMLHttpRequest to retrieve this file and display the data when it becomes available. Make sure your CSV file is readable and serving from a place that understands XMLHttpRequest's! In particular, you cannot specify a CSV file using <code>"file:///"</code>. Here's an example: (data from <a href="http://www.wunderground.com/history/airport/KNUQ/2007/1/1/CustomHistory.html?dayend=31&amp;monthend=12&amp;yearend=2007&amp;req_city=NA&amp;req_state=NA&amp;req_statename=NA">Weather Underground</a>)</p>
64
65<div class="example" style="clear:both;">
66 <div class="codeblock" style="float:left;width:400px;">
67 <h3 style="text-align:center">HTML</h3>
68<pre>
69&lt;html&gt;
70&lt;head&gt;
71&lt;script type=&quot;text/javascript&quot;
fd81b1d8 72 src=&quot;dygraph-combined-dev.js&quot;&gt;&lt;/script&gt;
14403441
DV
73&lt;/head&gt;
74&lt;body&gt;
75&lt;div id=&quot;graphdiv2&quot;
76 style=&quot;width:500px; height:300px;&quot;&gt;&lt;/div&gt;
77&lt;script type=&quot;text/javascript&quot;&gt;
78 g2 = new Dygraph(
79 document.getElementById(&quot;graphdiv2&quot;),
80 &quot;temperatures.csv&quot;, // path to CSV file
81 {} // options
82 );
83&lt;/script&gt;
84&lt;/body&gt;
85&lt;/html&gt;
86</pre>
87 </div>
88 <div class="codeoutput" style="float:left;">
89 <h3 style="text-align:center">OUTPUT</h3>
90 <div id="graphdiv2" style="width:500px; height:300px;"></div>
91 <script type="text/javascript">
92 g2 = new Dygraph(
93 document.getElementById("graphdiv2"),
94 "temperatures.csv",
95 {}
96 );
97 </script>
98 </div>
99</div>
100
101<p style="clear:both;">The file used is <code><a href="temperatures.csv">temperatures.csv</a></code>.</p>
102
103<p>There are a few things to note here:</p>
104
105<ul>
106 <li>The Dygraph sent off an XHR to get the temperatures.csv file.</li>
107 <li>The labels were taken from the first line of <code>temperatures.csv</code>, which is <code>Date,High,Low</code>.</li>
108 <li>The Dygraph automatically chose two different, easily-distinguishable colors for the two data series.</li>
109 <li>The labels on the x-axis have switched from days to months. If you zoom in, they'll switch to weeks and then days.</li>
110 <li>Some heuristics are used to determine a good vertical range for the data. The idea is to make all the data visible and have human-friendly values on the axis (i.e. 200 instead of 193.4). Generally this works well.</li>
111 <li>The data is very spiky. A moving average would be easier to interpret.</li>
112</ul>
113
114<p>This problem can be fixed by specifying the appropriate options in the "additional options" parameter to the Dygraph constructor. To set the number of days for a moving average, use the <code>rollPeriod</code> option. Here's how it's done:</p>
115
116<div class="example" style="clear:both;">
117 <div class="codeblock" style="float:left;width:400px;">
118 <h3 style="text-align:center">HTML</h3>
119<pre>
120&lt;html&gt;
121&lt;head&gt;
122&lt;script type=&quot;text/javascript&quot;
fd81b1d8 123 src=&quot;dygraph-combined-dev.js&quot;&gt;&lt;/script&gt;
14403441
DV
124&lt;/head&gt;
125&lt;body&gt;
126&lt;div id=&quot;graphdiv3&quot;
127 style=&quot;width:500px; height:300px;&quot;&gt;&lt;/div&gt;
128&lt;script type=&quot;text/javascript&quot;&gt;
129 g3 = new Dygraph(
130 document.getElementById(&quot;graphdiv3&quot;),
131 &quot;temperatures.csv&quot;,
132 {
133 rollPeriod: 7,
134 showRoller: true
135 }
136 );
137&lt;/script&gt;
138&lt;/body&gt;
139&lt;/html&gt;
140</pre>
141 </div>
142 <div class="codeoutput" style="float:left;">
143 <h3 style="text-align:center">OUTPUT</h3>
144 <div id="graphdiv3" style="width:500px; height:300px;"></div>
145 <script type="text/javascript">
146 g3 = new Dygraph(
147 document.getElementById("graphdiv3"),
148 "temperatures.csv",
149 {
150 rollPeriod: 7,
151 showRoller: true
152 }
153 );
154 </script>
155 </div>
156</div>
157
158<p style="clear:both;">A rolling average can be set using the text box in the lower left-hand corner of the graph (the showRoller attribute is what makes this appear). Also note that we've explicitly set the size of the chart div.</p>
159
160<h2>Error Bars</h2>
161
162<p>Another significant feature of the dygraphs library is the ability to display error bars around data series. One standard deviation must be specified for each data point. A <em>&plusmn;n</em> sigma band will be drawn around the data series at that point. If a moving average is being displayed, dygraphs will compute the standard deviation of the average at each point. I.E. <em>&sigma; = sqrt( (&sigma;<sub>1<sup>2</sup></sub> + &sigma;<sub>2<sup>2</sup></sub> + ... + &sigma;<sub>n<sup>2</sup></sub>) / n )</em></p>
163
164<p>Here's a demonstration. There are two data series. One is <code>N(100,10)</code> with a standard deviation of 10 specified at each point. The other is <code>N(80,20)</code> with a standard deviation of 20 specified at each point. The CSV file was generated using Octave and can be viewed at <a href="twonormals.csv">twonormals.csv</a>.</p>
165
166<div class="example" style="clear:both;">
167 <div class="codeblock" style="float:left;width:400px;">
168 <h3 style="text-align:center">HTML</h3>
169<pre>
170&lt;html&gt;
171&lt;head&gt;
172&lt;script type=&quot;text/javascript&quot;
173 src=&quot;combined.js&quot;&gt;&lt;/script&gt;
174&lt;/head&gt;
175&lt;body&gt;
176&lt;div id=&quot;graphdiv4&quot;
177 style=&quot;width:480px; height:320px;&quot;&gt;&lt;/div&gt;
178&lt;script type=&quot;text/javascript&quot;&gt;
179 g4 = new Dygraph(
180 document.getElementById(&quot;graphdiv4&quot;),
181 &quot;twonormals.csv&quot;,
182 {
183 rollPeriod: 7,
184 showRoller: true,
185 errorBars: true,
186 valueRange: [50,125]
187 }
188 );
189&lt;/script&gt;
190&lt;/body&gt;
191&lt;/html&gt;
192</pre>
193</div>
194<div class="codeoutput" style="float:left;">
195 <h3 style="text-align:center">OUTPUT</h3>
196 <div id="graphdiv4" style="width:480px; height:320px;"></div>
197 <script type="text/javascript">
198 g4 = new Dygraph(
199 document.getElementById("graphdiv4"),
200 "twonormals.csv",
201 {
202 rollPeriod: 7,
203 showRoller: true,
204 errorBars: true,
205 valueRange: [50,125]
206 }
207 );
208 </script>
209</div>
210</div>
211
212<p style="clear:both;">Things to note here:</p>
213
214<ul>
215<li>The <strong>errorBars</strong> option affects both the interpretation of the CSV file and the display of the graph. When <strong>errorBars</strong> is set to true, each line is interpreted as <em>YYYYMMDD</em>, <em>A</em>, <em>sigma_A</em>, <em>B</em>, <em>sigma_B</em>, &hellip;</li>
216<li>The first line of the CSV file doesn't mention the error columns. In this case, it's just "Date,Series1,Series2".</li>
217<li>The averaging visibly affects the error bars. This is most clear if you crank up the rolling period to something like 100 days. For the earliest dates, there won't be 100 data points to average so the signal will be noisier. The error bars get smaller like sqrt(N) going forward in time until there's a full 100 points to average.</li>
218<li>The error bars are partially transparent. This can be seen when they overlap one another.</li>
219</ul>
220
221
222<h2 id="gviz">GViz Data</h2>
223
224<p>The <a
225 href="http://code.google.com/apis/visualization/documentation/index.html">Google
226 Visualization API</a> provides a standard interface for describing data.
227Once you've specified your data using this API, you can plug in any
228GViz-compatible visualization. dygraphs is such a visualization. In
229particular, it can be used as a drop-in replacement for the
230AnnotatedTimeline visualization used on Google Finance and other sites. To
231see how this works, check out the <a href="tests/annotation-gviz.html">gviz
232 annotation demo.</a></p>
233
234<p>For a simple demonstration of how to use dygraphs a GViz visualization, see <a href="http://danvk.org/dygraphs/tests/gviz.html">http://danvk.org/dygraphs/tests/gviz.html</a>. dygraphs can also be used as a GViz gadget. This allows it to be embedded inside of a Google Spreadsheet. For a demonstration of this, see <a href="http://spreadsheets.google.com/ccc?key=0Anx1yCqeL8YUdDR1c3pPREhraGhkWmdhaURjOXRncXc&amp;hl=en">this spreadsheet</a>. The URL for the gadget is <code><a href="http://danvk.org/dygraphs/gadget.xml">http://danvk.org/dygraphs/gadget.xml</a></code>.</p>
235
236<p>Here's an example of a published gviz gadget using dygraphs:</p>
237
238<script src="http://spreadsheets.google.com/gpub?url=http%3A%2F%2Fkb8jbn8l90ocl9n4b14jrcvp61ceqis5.spreadsheets.gmodules.com%2Fgadgets%2Fifr%3Fup__table_query_url%3Dhttp%253A%252F%252Fspreadsheets.google.com%252Ftq%253Frange%253DA1%25253AC31%2526headers%253D-1%2526key%253D0Anx1yCqeL8YUdDR1c3pPREhraGhkWmdhaURjOXRncXc%2526gid%253D0%2526pub%253D1%26up__table_query_refresh_interval%3D300%26url%3Dhttp%253A%252F%252Fdanvk.org%252Fdygraphs%252Fgadget.xml%253Fnocache&height=215&width=530"></script>
239
240<h2 id="baseball">Charting Fractions</h2>
241
242<p>Situations often arise where you want to plot fractions, e.g. the fraction of respondents in a poll who said they'd vote for candidate X or the number of hits divided by at bats (baseball's batting average). Fractions require special treatment for two main reasons:</p>
243
244<ul>
245 <li>The average of <code>a1/b1</code> and <code>a2/b2</code> is <code>(a1+a2)/(b1+b2)</code>, not <code>(a1/b1 + a2/b2)/2</code>.</li>
246 <li>The normal approximation is not always applicable and more sophisticated confidence intervals (e.g. the <a href="http://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval">Wilson confidence interval</a>) must be employed to avoid ratios that exceed 100% or go below 0%.</li>
247</ul>
248
249<p>Fortunately, dygraphs handles both of these for you! Here's a chart and the command that generated it:</p>
250
251<div style="width:750px; text-align:center; font-weight: bold; font-size: 125%;">Batting Average for Ichiro Suzuki vs. Mariners (2004)</div>
252<div id="baseballdiv" style="width:750px; height:300px;"></div>
253<script type="text/javascript">
254 new Dygraph(
255 document.getElementById("baseballdiv"),
256 "suzuki-mariners.txt",
257 {
258 fractions: true,
259 errorBars: true,
260 showRoller: true,
261 rollPeriod: 15
262 }
263 );
264</script>
265
266<b>Code:</b>
267<pre>
268new Dygraph(
269 document.getElementById(&quot;baseballdiv&quot;),
270 &quot;suzuki-mariners.txt&quot;,
271 {
272 fractions: true,
273 errorBars: true,
274 showRoller: true,
275 rollPeriod: 15
276 }
277);
278</pre>
279
280<p>The <code>fractions</code> option indicates that the values in each column should be parsed as fractions (e.g. "1/2" instead of "0.5"). The <code>errorBars</code> option indicates that we'd like to see a confidence interval around each data point. By default, when <code>fractions</code> is set, you get a Wilson confidence interval. If you look carefully at the chart, you can see that the error bars are asymmetric.</p>
281
282<p>A couple things to notice about this chart:</p>
283
284<ul>
285 <li>The error bars for Ichiro's batting average are larger than for the Mariners', since he has far fewer at bats than his team.</li>
286 <li>dygraphs makes it easy to see "batting average over the last 30 games". This is ordinarily quite difficult to compute. It makes it clear where the "hot" and "cold" part of Suzuki's season were.</li>
287 <li>If you set the averaging period to something large, like 200, you'll see the team's and player's batting average through that game. The final number is the overall batting average for the season.</li>
288 <li>Where the error bars do not overlap, we can say with 95% confidence that the series differ. There is a better than 95% chance that Ichiro was a better hitter than his team as a whole in 2004, the year he won the batting title.</li>
289</ul>
290
291<h2 id="stock">One last demo</h2>
292
293<p>This chart shows monthly closes of the Dow Jones Industrial Average, both in nominal and real (i.e. adjusted for inflation) dollars. The shaded areas show its monthly high and low. CPI values with a base from 1982-84 are used to adjust for inflation.</p>
294
295<div id="dow_chart" style="width:750px; height:350px;"></div>
296<p><b>Display: </b>
297<input type=checkbox id=0 onClick="stockchange(this)" checked>
298<label for="0"> Nominal</label>
299<input type=checkbox id=1 onClick="stockchange(this)" checked>
300<label for="1"> Real</label>
301<input type=checkbox id=ann onClick="annotationschange(this)" checked>
302<label for="ann"> Annotations</label>
303</p>
304
305<script type="text/javascript">
306 var stock_annotations = [
307 {
308 series: "Real",
309 x: "1929-08-15",
310 shortText: "A",
311 text: "1929 Stock Market Peak",
312 cssClass: 'annotation'
313 },
314 {
315 series: "Nominal",
316 x: "1987-08-15",
317 shortText: "B",
318 text: "1987 Crash",
319 cssClass: 'annotation'
320 },
321 {
322 series: "Nominal",
323 x: "1999-12-15",
324 shortText: "C",
325 text: "1999 (.com) Peak",
326 cssClass: 'annotation'
327 },
328 {
329 series: "Nominal",
330 x: "2007-10-15",
331 shortText: "D",
332 text: "All-Time Market Peak",
333 cssClass: 'annotation'
334 }
335 ];
336
337// From http://www.econstats.com/eqty/eq_d_mi_3.csv
338 stockchart = new Dygraph(
339 document.getElementById('dow_chart'),
340 "dow.txt",
341 {
342 showRoller: true,
343 customBars: true,
344 labelsKMB: true,
345 drawCallback: function(g, is_initial) {
346 if (!is_initial) return;
347 g.setAnnotations( stock_annotations );
348 }
349 }
350 );
351
352 function stockchange(el) {
353 stockchart.setVisibility(el.id, el.checked);
354 }
355
356 function annotationschange(el) {
357 if (el.checked) {
358 stockchart.setAnnotations(stock_annotations);
359 } else {
360 stockchart.setAnnotations([]);
361 }
362 }
363</script>
364<!--
365
366Here is a script to regenerate the Dow Jones plot:
367
368# Get unadjusted DJIA data in a nice format:
369curl -O http://www.econstats.com/eqty/eq_d_mi_3.csv
370sed '1,17d' eq_d_mi_3.csv | cut -d, -f1,6 | perl -pe 's/(\d{4}-\d\d)-\d\d/$1/g' | perl -pe 's/, */\t/' | grep -v 'na' | perl -ne 'chomp; ($m,$v) = split/\t/; $close{$m} = $v; if ($low{$m} == 0 || $v < $low{$m}) { $low{$m}=$v } if ($v > $high{$m}) { $high{$m} = $v } END { for $x(sort keys %close) { print "$x\t$low{$x}\t$close{$x}\t$high{$x}\n" } } ' > monthly-djia.tsv
371
372# Fetch and format the CPI data:
373curl 'http://data.bls.gov/PDQ/servlet/SurveyOutputServlet?series_id=CUUR0000SA0&years_option=all_years&periods_option=all_periods&output_type=column&output_format=text&delimiter=comma' > cpi-u.txt
374sed '1,/Series Id,Year,/d' cpi-u.txt | sed '/^$/,$d' | cut -d, -f2,3,4 | perl -ne 'print if /,M(0[0-9]|1[012]),/' | perl -pe 's/(\d{4}),M(\d{2}),/$1-$2\t/g' > cpi-u.tsv
375
376# Merge:
377join -t' ' cpi-u.tsv monthly-djia.tsv > annotated-djia.tsv
378perl -ne 'BEGIN{print "Month,Nominal,Real\n"} chomp; ($m,$cpi,$low,$close,$high) = split /\t/; $cpi /= 100.0; print "$m-15,$low;$close;$high,",($low/$cpi),";",($close/$cpi),";",($high/$cpi),"\n"' annotated-djia.tsv > dow.txt
379
380-->
381
382<h2>Common Gotchas</h2>
383
384<p>Here are a few problems that I've frequently run into while using the dygraphs library.</p>
385
386<ul>
387 <li>If your chart doesn't display, be sure to check your browser's JavaScript error console. dygraphs makes every attempt to log errors and warnings, and these can often guide you in the right direction.</li>
388 <li>Make sure your CSV files are readable! If your graph isn't showing up, the XMLHttpRequest for the CSV file may be failing. You can determine whether this is the case using tools like <a href="http://www.getfirebug.com/">Firebug</a>.</li>
389 <li>Make sure your CSV files are in the correct format. They must be of the form <code>YYYYMMDD, series1, series2, </code>&hellip; . And if you set the <code>errorBars</code> property, make sure you alternate data series and standard deviations.</li>
390 <li>dygraphs are not happy when placed inside a <code>&lt;center&gt;</code> tag. This applies to the CSS <code>text-align</code> property as well. If you want to center a Dygraph, put it inside a table with <code>align = center</code> set.</li>
391 <li>Don't set the <code>dateWindow</code> property to a date. It expects milliseconds since epoch, which can be obtained from a JavaScript Date object's valueOf method.</li>
392 <li>Make sure you don't have any trailing commas in your call to the Dygraph constructor or in the options parameter. Firefox, Chrome and Safari ignore these but they can cause a graph to not display in Internet Explorer.</li>
393</ul>
394
395<h2>What next?</h2>
396
397<p>If you need to support Internet Explorer, check out our <a href="ie.html">notes on IE</a>.</p>
398
399<p>To get some inspiration, look at how the <a href="gallery/">charts in our gallery</a> are built.</p>
400
401
402<!--#include virtual="footer.html" -->