forked from matplotlib/matplotlib.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
984 lines (555 loc) · 80.3 KB
/
gallery.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Thumbnail gallery — Matplotlib 1.2.1 documentation</title>
<link rel="stylesheet" href="_static/mpl.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.2.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Matplotlib 1.2.1 documentation"
href="_static/opensearch.xml"/>
<link rel="top" title="Matplotlib 1.2.1 documentation" href="index.html" />
<link rel="canonical" href="https://matplotlib.org/gallery.html" />
</head>
<body>
<!-- Piwik -->
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
var pkBaseURL = (("https:" == document.location.protocol) ? "https://apps.sourceforge.net/piwik/matplotlib/" : "http://apps.sourceforge.net/piwik/matplotlib/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
<script type="text/javascript">
if ("matplotlib.sourceforge.net" == document.location.hostname ||
"matplotlib.sf.net" == document.location.hostname) {
piwik_action_name = '';
piwik_idsite = 1;
piwik_url = pkBaseURL + "piwik.php";
piwik_log(piwik_action_name, piwik_idsite, piwik_url);
document.write(unescape('%3Cobject%3E%3Cnoscript%3E%3Cp%3E%3Cimg src="http://apps.sourceforge.net/piwik/matplotlib/piwik.php?idsite=1" alt="piwik"/%3E%3C/p%3E%3C/noscript%3E%3C/object%3E'));
}
</script>
<!-- End Piwik Tag -->
<link rel="shortcut icon" href="_static/favicon.ico">
<!-- The "Fork me on github" ribbon -->
<img style="float: right; margin-bottom: -40px; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" usemap="#ribbonmap"/>
<map name="ribbonmap">
<area shape="poly" coords="15,0,148,-1,148,135" href="https://github.com/matplotlib/matplotlib" title="Fork me on GitHub" />
</map>
<div style="background-color: white; text-align: left; padding: 10px 10px 15px 15px">
<a href="index.html"><img src="_static/logo2.png" border="0" alt="matplotlib"/></a>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">home</a>| </li>
<li><a href="http://www.matplotlib.org/downloads.html">downloads</a>| </li>
<li><a href="search.html">search</a>| </li>
<li><a href="examples/index.html">examples</a>| </li>
<li><a href="#">gallery</a>| </li>
<li><a href="citing.html">citation</a>| </li>
<li><a href="contents.html">docs</a> »</li>
</ul>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<h3>Click on any image to see full size image and source code</h3>
<br/>
<li><a class="reference internal" href="#">Gallery</a><ul>
<li><a class="reference internal" href="#api">api</a></li>
<li><a class="reference internal" href="#pylab_examples">pylab_examples</a></li>
<li><a class="reference internal" href="#mplot3d">mplot3d</a></li>
<li><a class="reference internal" href="#widgets">widgets</a></li>
<li><a class="reference internal" href="#axes_grid">axes_grid</a></li>
</ul>
</li>
<div class="section" id="api"> <h4>api<a class="headerlink" href="#api" title="Permalink to this headline">¶</a></h4>
<a href="examples/api/artist_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/artist_demo.png" border="0" alt="artist_demo"/></a>
<a href="examples/api/barchart_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/barchart_demo.png" border="0" alt="barchart_demo"/></a>
<a href="examples/api/bbox_intersect.html"><img src="plot_directive/mpl_examples/api/thumbnails/bbox_intersect.png" border="0" alt="bbox_intersect"/></a>
<a href="examples/api/clippath_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/clippath_demo.png" border="0" alt="clippath_demo"/></a>
<a href="examples/api/collections_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/collections_demo.png" border="0" alt="collections_demo"/></a>
<a href="examples/api/color_cycle.html"><img src="plot_directive/mpl_examples/api/thumbnails/color_cycle.png" border="0" alt="color_cycle"/></a>
<a href="examples/api/colorbar_only.html"><img src="plot_directive/mpl_examples/api/thumbnails/colorbar_only.png" border="0" alt="colorbar_only"/></a>
<a href="examples/api/compound_path.html"><img src="plot_directive/mpl_examples/api/thumbnails/compound_path.png" border="0" alt="compound_path"/></a>
<a href="examples/api/custom_projection_example.html"><img src="plot_directive/mpl_examples/api/thumbnails/custom_projection_example.png" border="0" alt="custom_projection_example"/></a>
<a href="examples/api/custom_scale_example.html"><img src="plot_directive/mpl_examples/api/thumbnails/custom_scale_example.png" border="0" alt="custom_scale_example"/></a>
<a href="examples/api/date_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/date_demo.png" border="0" alt="date_demo"/></a>
<a href="examples/api/date_index_formatter.html"><img src="plot_directive/mpl_examples/api/thumbnails/date_index_formatter_00.png" border="0" alt="date_index_formatter"/></a>
<a href="examples/api/date_index_formatter.html"><img src="plot_directive/mpl_examples/api/thumbnails/date_index_formatter_01.png" border="0" alt="date_index_formatter"/></a>
<a href="examples/api/demo_affine_image.html"><img src="plot_directive/mpl_examples/api/thumbnails/demo_affine_image_00_00.png" border="0" alt="demo_affine_image"/></a>
<a href="examples/api/donut_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/donut_demo.png" border="0" alt="donut_demo"/></a>
<a href="examples/api/engineering_formatter.html"><img src="plot_directive/mpl_examples/api/thumbnails/engineering_formatter.png" border="0" alt="engineering_formatter"/></a>
<a href="examples/api/fahrenheit_celsius_scales.html"><img src="plot_directive/mpl_examples/api/thumbnails/fahrenheit_celsius_scales.png" border="0" alt="fahrenheit_celsius_scales"/></a>
<a href="examples/api/hinton_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/hinton_demo.png" border="0" alt="hinton_demo"/></a>
<a href="examples/api/histogram_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/histogram_demo.png" border="0" alt="histogram_demo"/></a>
<a href="examples/api/histogram_path_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/histogram_path_demo.png" border="0" alt="histogram_path_demo"/></a>
<a href="examples/api/image_zcoord.html"><img src="plot_directive/mpl_examples/api/thumbnails/image_zcoord.png" border="0" alt="image_zcoord"/></a>
<a href="examples/api/joinstyle.html"><img src="plot_directive/mpl_examples/api/thumbnails/joinstyle.png" border="0" alt="joinstyle"/></a>
<a href="examples/api/legend_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/legend_demo.png" border="0" alt="legend_demo"/></a>
<a href="examples/api/line_with_text.html"><img src="plot_directive/mpl_examples/api/thumbnails/line_with_text.png" border="0" alt="line_with_text"/></a>
<a href="examples/api/logo2.html"><img src="plot_directive/mpl_examples/api/thumbnails/logo2.png" border="0" alt="logo2"/></a>
<a href="examples/api/mathtext_asarray.html"><img src="plot_directive/mpl_examples/api/thumbnails/mathtext_asarray.png" border="0" alt="mathtext_asarray"/></a>
<a href="examples/api/patch_collection.html"><img src="plot_directive/mpl_examples/api/thumbnails/patch_collection.png" border="0" alt="patch_collection"/></a>
<a href="examples/api/path_patch_demo.html"><img src="plot_directive/mpl_examples/api/thumbnails/path_patch_demo.png" border="0" alt="path_patch_demo"/></a>
<a href="examples/api/quad_bezier.html"><img src="plot_directive/mpl_examples/api/thumbnails/quad_bezier.png" border="0" alt="quad_bezier"/></a>
<a href="examples/api/radar_chart.html"><img src="plot_directive/mpl_examples/api/thumbnails/radar_chart.png" border="0" alt="radar_chart"/></a>
<a href="examples/api/sankey_demo_basics.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_basics_00.png" border="0" alt="sankey_demo_basics"/></a>
<a href="examples/api/sankey_demo_basics.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_basics_01.png" border="0" alt="sankey_demo_basics"/></a>
<a href="examples/api/sankey_demo_basics.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_basics_02.png" border="0" alt="sankey_demo_basics"/></a>
<a href="examples/api/sankey_demo_links.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_links.png" border="0" alt="sankey_demo_links"/></a>
<a href="examples/api/sankey_demo_old.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_old.png" border="0" alt="sankey_demo_old"/></a>
<a href="examples/api/sankey_demo_rankine.html"><img src="plot_directive/mpl_examples/api/thumbnails/sankey_demo_rankine.png" border="0" alt="sankey_demo_rankine"/></a>
<a href="examples/api/scatter_piecharts.html"><img src="plot_directive/mpl_examples/api/thumbnails/scatter_piecharts.png" border="0" alt="scatter_piecharts"/></a>
<a href="examples/api/span_regions.html"><img src="plot_directive/mpl_examples/api/thumbnails/span_regions.png" border="0" alt="span_regions"/></a>
<a href="examples/api/two_scales.html"><img src="plot_directive/mpl_examples/api/thumbnails/two_scales.png" border="0" alt="two_scales"/></a>
<a href="examples/api/unicode_minus.html"><img src="plot_directive/mpl_examples/api/thumbnails/unicode_minus.png" border="0" alt="unicode_minus"/></a>
<a href="examples/api/watermark_image.html"><img src="plot_directive/mpl_examples/api/thumbnails/watermark_image.png" border="0" alt="watermark_image"/></a>
<a href="examples/api/watermark_text.html"><img src="plot_directive/mpl_examples/api/thumbnails/watermark_text.png" border="0" alt="watermark_text"/></a>
</div>
<div class="section" id="pylab_examples"> <h4>pylab_examples<a class="headerlink" href="#pylab_examples" title="Permalink to this headline">¶</a></h4>
<a href="examples/pylab_examples/accented_text.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/accented_text.png" border="0" alt="accented_text"/></a>
<a href="examples/pylab_examples/agg_buffer_to_array.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/agg_buffer_to_array_00.png" border="0" alt="agg_buffer_to_array"/></a>
<a href="examples/pylab_examples/agg_buffer_to_array.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/agg_buffer_to_array_01.png" border="0" alt="agg_buffer_to_array"/></a>
<a href="examples/pylab_examples/alignment_test.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/alignment_test.png" border="0" alt="alignment_test"/></a>
<a href="examples/pylab_examples/anchored_artists.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/anchored_artists.png" border="0" alt="anchored_artists"/></a>
<a href="examples/pylab_examples/animation_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/animation_demo.png" border="0" alt="animation_demo"/></a>
<a href="examples/pylab_examples/annotation_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo2_00.png" border="0" alt="annotation_demo2"/></a>
<a href="examples/pylab_examples/annotation_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo2_01.png" border="0" alt="annotation_demo2"/></a>
<a href="examples/pylab_examples/annotation_demo3.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo3.png" border="0" alt="annotation_demo3"/></a>
<a href="examples/pylab_examples/annotation_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo_00.png" border="0" alt="annotation_demo"/></a>
<a href="examples/pylab_examples/annotation_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo_01.png" border="0" alt="annotation_demo"/></a>
<a href="examples/pylab_examples/annotation_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/annotation_demo_02.png" border="0" alt="annotation_demo"/></a>
<a href="examples/pylab_examples/anscombe.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/anscombe.png" border="0" alt="anscombe"/></a>
<a href="examples/pylab_examples/arctest.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/arctest.png" border="0" alt="arctest"/></a>
<a href="examples/pylab_examples/arrow_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/arrow_demo.png" border="0" alt="arrow_demo"/></a>
<a href="examples/pylab_examples/arrow_simple_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/arrow_simple_demo.png" border="0" alt="arrow_simple_demo"/></a>
<a href="examples/pylab_examples/aspect_loglog.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/aspect_loglog.png" border="0" alt="aspect_loglog"/></a>
<a href="examples/pylab_examples/axes_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/axes_demo.png" border="0" alt="axes_demo"/></a>
<a href="examples/pylab_examples/axes_props.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/axes_props.png" border="0" alt="axes_props"/></a>
<a href="examples/pylab_examples/axes_zoom_effect.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/axes_zoom_effect.png" border="0" alt="axes_zoom_effect"/></a>
<a href="examples/pylab_examples/axhspan_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/axhspan_demo.png" border="0" alt="axhspan_demo"/></a>
<a href="examples/pylab_examples/axis_equal_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/axis_equal_demo.png" border="0" alt="axis_equal_demo"/></a>
<a href="examples/pylab_examples/bar_stacked.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/bar_stacked.png" border="0" alt="bar_stacked"/></a>
<a href="examples/pylab_examples/barb_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barb_demo_00.png" border="0" alt="barb_demo"/></a>
<a href="examples/pylab_examples/barb_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barb_demo_01.png" border="0" alt="barb_demo"/></a>
<a href="examples/pylab_examples/barchart_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barchart_demo.png" border="0" alt="barchart_demo"/></a>
<a href="examples/pylab_examples/barchart_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barchart_demo2.png" border="0" alt="barchart_demo2"/></a>
<a href="examples/pylab_examples/barcode_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barcode_demo.png" border="0" alt="barcode_demo"/></a>
<a href="examples/pylab_examples/barh_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barh_demo_00.png" border="0" alt="barh_demo"/></a>
<a href="examples/pylab_examples/barh_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/barh_demo_01.png" border="0" alt="barh_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo2.png" border="0" alt="boxplot_demo2"/></a>
<a href="examples/pylab_examples/boxplot_demo3.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo3.png" border="0" alt="boxplot_demo3"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_00.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_01.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_02.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_03.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_04.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_05.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/boxplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/boxplot_demo_06.png" border="0" alt="boxplot_demo"/></a>
<a href="examples/pylab_examples/break.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/break.png" border="0" alt="break"/></a>
<a href="examples/pylab_examples/broken_axis.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/broken_axis.png" border="0" alt="broken_axis"/></a>
<a href="examples/pylab_examples/broken_barh.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/broken_barh.png" border="0" alt="broken_barh"/></a>
<a href="examples/pylab_examples/centered_ticklabels.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/centered_ticklabels.png" border="0" alt="centered_ticklabels"/></a>
<a href="examples/pylab_examples/clippedline.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/clippedline.png" border="0" alt="clippedline"/></a>
<a href="examples/pylab_examples/cohere_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/cohere_demo.png" border="0" alt="cohere_demo"/></a>
<a href="examples/pylab_examples/color_by_yvalue.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/color_by_yvalue.png" border="0" alt="color_by_yvalue"/></a>
<a href="examples/pylab_examples/color_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/color_demo.png" border="0" alt="color_demo"/></a>
<a href="examples/pylab_examples/colorbar_tick_labelling_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/colorbar_tick_labelling_demo_00.png" border="0" alt="colorbar_tick_labelling_demo"/></a>
<a href="examples/pylab_examples/colorbar_tick_labelling_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/colorbar_tick_labelling_demo_01.png" border="0" alt="colorbar_tick_labelling_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_00.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_01.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_02.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_03.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_04.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_demo_05.png" border="0" alt="contour_demo"/></a>
<a href="examples/pylab_examples/contour_image.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_image.png" border="0" alt="contour_image"/></a>
<a href="examples/pylab_examples/contour_label_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_label_demo_00.png" border="0" alt="contour_label_demo"/></a>
<a href="examples/pylab_examples/contour_label_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_label_demo_01.png" border="0" alt="contour_label_demo"/></a>
<a href="examples/pylab_examples/contour_label_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contour_label_demo_02.png" border="0" alt="contour_label_demo"/></a>
<a href="examples/pylab_examples/contourf_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_demo_00.png" border="0" alt="contourf_demo"/></a>
<a href="examples/pylab_examples/contourf_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_demo_01.png" border="0" alt="contourf_demo"/></a>
<a href="examples/pylab_examples/contourf_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_demo_02.png" border="0" alt="contourf_demo"/></a>
<a href="examples/pylab_examples/contourf_hatching.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_hatching_00.png" border="0" alt="contourf_hatching"/></a>
<a href="examples/pylab_examples/contourf_hatching.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_hatching_01.png" border="0" alt="contourf_hatching"/></a>
<a href="examples/pylab_examples/contourf_log.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/contourf_log.png" border="0" alt="contourf_log"/></a>
<a href="examples/pylab_examples/coords_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/coords_demo.png" border="0" alt="coords_demo"/></a>
<a href="examples/pylab_examples/coords_report.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/coords_report.png" border="0" alt="coords_report"/></a>
<a href="examples/pylab_examples/csd_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/csd_demo.png" border="0" alt="csd_demo"/></a>
<a href="examples/pylab_examples/custom_cmap.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/custom_cmap.png" border="0" alt="custom_cmap"/></a>
<a href="examples/pylab_examples/custom_figure_class.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/custom_figure_class.png" border="0" alt="custom_figure_class"/></a>
<a href="examples/pylab_examples/custom_ticker1.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/custom_ticker1.png" border="0" alt="custom_ticker1"/></a>
<a href="examples/pylab_examples/customize_rc.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/customize_rc.png" border="0" alt="customize_rc"/></a>
<a href="examples/pylab_examples/dannys_example.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/dannys_example.png" border="0" alt="dannys_example"/></a>
<a href="examples/pylab_examples/dash_control.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/dash_control.png" border="0" alt="dash_control"/></a>
<a href="examples/pylab_examples/dashpointlabel.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/dashpointlabel.png" border="0" alt="dashpointlabel"/></a>
<a href="examples/pylab_examples/date_demo1.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/date_demo1.png" border="0" alt="date_demo1"/></a>
<a href="examples/pylab_examples/date_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/date_demo2.png" border="0" alt="date_demo2"/></a>
<a href="examples/pylab_examples/date_demo_convert.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/date_demo_convert.png" border="0" alt="date_demo_convert"/></a>
<a href="examples/pylab_examples/date_demo_rrule.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/date_demo_rrule.png" border="0" alt="date_demo_rrule"/></a>
<a href="examples/pylab_examples/date_index_formatter.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/date_index_formatter.png" border="0" alt="date_index_formatter"/></a>
<a href="examples/pylab_examples/demo_agg_filter.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_agg_filter.png" border="0" alt="demo_agg_filter"/></a>
<a href="examples/pylab_examples/demo_annotation_box.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_annotation_box.png" border="0" alt="demo_annotation_box"/></a>
<a href="examples/pylab_examples/demo_bboximage.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_bboximage.png" border="0" alt="demo_bboximage"/></a>
<a href="examples/pylab_examples/demo_ribbon_box.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_ribbon_box.png" border="0" alt="demo_ribbon_box"/></a>
<a href="examples/pylab_examples/demo_text_path.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_text_path.png" border="0" alt="demo_text_path"/></a>
<a href="examples/pylab_examples/demo_text_rotation_mode.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_text_rotation_mode.png" border="0" alt="demo_text_rotation_mode"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_00.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_01.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_02.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_03.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_04.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_05.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_00_06.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/demo_tight_layout.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/demo_tight_layout_01_00.png" border="0" alt="demo_tight_layout"/></a>
<a href="examples/pylab_examples/dolphin.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/dolphin.png" border="0" alt="dolphin"/></a>
<a href="examples/pylab_examples/ellipse_collection.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/ellipse_collection.png" border="0" alt="ellipse_collection"/></a>
<a href="examples/pylab_examples/ellipse_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/ellipse_demo.png" border="0" alt="ellipse_demo"/></a>
<a href="examples/pylab_examples/ellipse_rotated.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/ellipse_rotated.png" border="0" alt="ellipse_rotated"/></a>
<a href="examples/pylab_examples/equal_aspect_ratio.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/equal_aspect_ratio.png" border="0" alt="equal_aspect_ratio"/></a>
<a href="examples/pylab_examples/errorbar_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/errorbar_demo_00.png" border="0" alt="errorbar_demo"/></a>
<a href="examples/pylab_examples/errorbar_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/errorbar_demo_01.png" border="0" alt="errorbar_demo"/></a>
<a href="examples/pylab_examples/errorbar_limits.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/errorbar_limits_00.png" border="0" alt="errorbar_limits"/></a>
<a href="examples/pylab_examples/errorbar_limits.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/errorbar_limits_01.png" border="0" alt="errorbar_limits"/></a>
<a href="examples/pylab_examples/errorbar_subsample.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/errorbar_subsample.png" border="0" alt="errorbar_subsample"/></a>
<a href="examples/pylab_examples/fancyarrow_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fancyarrow_demo.png" border="0" alt="fancyarrow_demo"/></a>
<a href="examples/pylab_examples/fancybox_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fancybox_demo2.png" border="0" alt="fancybox_demo2"/></a>
<a href="examples/pylab_examples/fancybox_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fancybox_demo_01_00.png" border="0" alt="fancybox_demo"/></a>
<a href="examples/pylab_examples/fancytextbox_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fancytextbox_demo.png" border="0" alt="fancytextbox_demo"/></a>
<a href="examples/pylab_examples/figimage_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/figimage_demo.png" border="0" alt="figimage_demo"/></a>
<a href="examples/pylab_examples/figlegend_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/figlegend_demo.png" border="0" alt="figlegend_demo"/></a>
<a href="examples/pylab_examples/figure_title.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/figure_title.png" border="0" alt="figure_title"/></a>
<a href="examples/pylab_examples/fill_between_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_between_demo_00.png" border="0" alt="fill_between_demo"/></a>
<a href="examples/pylab_examples/fill_between_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_between_demo_01.png" border="0" alt="fill_between_demo"/></a>
<a href="examples/pylab_examples/fill_between_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_between_demo_02.png" border="0" alt="fill_between_demo"/></a>
<a href="examples/pylab_examples/fill_betweenx_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_betweenx_demo_00.png" border="0" alt="fill_betweenx_demo"/></a>
<a href="examples/pylab_examples/fill_betweenx_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_betweenx_demo_01.png" border="0" alt="fill_betweenx_demo"/></a>
<a href="examples/pylab_examples/fill_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_demo.png" border="0" alt="fill_demo"/></a>
<a href="examples/pylab_examples/fill_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_demo2.png" border="0" alt="fill_demo2"/></a>
<a href="examples/pylab_examples/fill_spiral.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fill_spiral.png" border="0" alt="fill_spiral"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_00.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_01.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_02.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_03.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_04.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_05.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_06.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_07.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_08.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_09.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_10.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_11.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/filledmarker_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/filledmarker_demo_12.png" border="0" alt="filledmarker_demo"/></a>
<a href="examples/pylab_examples/finance_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/finance_demo.png" border="0" alt="finance_demo"/></a>
<a href="examples/pylab_examples/finance_work2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/finance_work2.png" border="0" alt="finance_work2"/></a>
<a href="examples/pylab_examples/findobj_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/findobj_demo.png" border="0" alt="findobj_demo"/></a>
<a href="examples/pylab_examples/fonts_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fonts_demo.png" border="0" alt="fonts_demo"/></a>
<a href="examples/pylab_examples/fonts_demo_kw.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/fonts_demo_kw.png" border="0" alt="fonts_demo_kw"/></a>
<a href="examples/pylab_examples/ganged_plots.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/ganged_plots.png" border="0" alt="ganged_plots"/></a>
<a href="examples/pylab_examples/geo_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/geo_demo.png" border="0" alt="geo_demo"/></a>
<a href="examples/pylab_examples/gradient_bar.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/gradient_bar.png" border="0" alt="gradient_bar"/></a>
<a href="examples/pylab_examples/griddata_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/griddata_demo_00_00.png" border="0" alt="griddata_demo"/></a>
<a href="examples/pylab_examples/hatch_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hatch_demo.png" border="0" alt="hatch_demo"/></a>
<a href="examples/pylab_examples/hexbin_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hexbin_demo.png" border="0" alt="hexbin_demo"/></a>
<a href="examples/pylab_examples/hexbin_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hexbin_demo2.png" border="0" alt="hexbin_demo2"/></a>
<a href="examples/pylab_examples/hist2d_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hist2d_demo.png" border="0" alt="hist2d_demo"/></a>
<a href="examples/pylab_examples/hist2d_log_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hist2d_log_demo.png" border="0" alt="hist2d_log_demo"/></a>
<a href="examples/pylab_examples/hist_colormapped.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hist_colormapped.png" border="0" alt="hist_colormapped"/></a>
<a href="examples/pylab_examples/histogram_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo.png" border="0" alt="histogram_demo"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_00.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_01.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_02.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_03.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_04.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_05.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_demo_extended.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_demo_extended_06.png" border="0" alt="histogram_demo_extended"/></a>
<a href="examples/pylab_examples/histogram_percent_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/histogram_percent_demo.png" border="0" alt="histogram_percent_demo"/></a>
<a href="examples/pylab_examples/hline_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/hline_demo.png" border="0" alt="hline_demo"/></a>
<a href="examples/pylab_examples/image_clip_path.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_clip_path.png" border="0" alt="image_clip_path"/></a>
<a href="examples/pylab_examples/image_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_demo.png" border="0" alt="image_demo"/></a>
<a href="examples/pylab_examples/image_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_demo2.png" border="0" alt="image_demo2"/></a>
<a href="examples/pylab_examples/image_demo3.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_demo3.png" border="0" alt="image_demo3"/></a>
<a href="examples/pylab_examples/image_interp.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_interp_00.png" border="0" alt="image_interp"/></a>
<a href="examples/pylab_examples/image_interp.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_interp_01.png" border="0" alt="image_interp"/></a>
<a href="examples/pylab_examples/image_interp.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_interp_02.png" border="0" alt="image_interp"/></a>
<a href="examples/pylab_examples/image_masked.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_masked.png" border="0" alt="image_masked"/></a>
<a href="examples/pylab_examples/image_nonuniform.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_nonuniform.png" border="0" alt="image_nonuniform"/></a>
<a href="examples/pylab_examples/image_origin.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_origin.png" border="0" alt="image_origin"/></a>
<a href="examples/pylab_examples/image_slices_viewer.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/image_slices_viewer.png" border="0" alt="image_slices_viewer"/></a>
<a href="examples/pylab_examples/integral_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/integral_demo.png" border="0" alt="integral_demo"/></a>
<a href="examples/pylab_examples/interp_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/interp_demo.png" border="0" alt="interp_demo"/></a>
<a href="examples/pylab_examples/invert_axes.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/invert_axes.png" border="0" alt="invert_axes"/></a>
<a href="examples/pylab_examples/layer_images.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/layer_images.png" border="0" alt="layer_images"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_00.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_01.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_02.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_03.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_04.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_05.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_06.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_07.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_08.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_auto.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_auto_09.png" border="0" alt="legend_auto"/></a>
<a href="examples/pylab_examples/legend_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_demo.png" border="0" alt="legend_demo"/></a>
<a href="examples/pylab_examples/legend_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_demo2.png" border="0" alt="legend_demo2"/></a>
<a href="examples/pylab_examples/legend_demo3.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_demo3.png" border="0" alt="legend_demo3"/></a>
<a href="examples/pylab_examples/legend_demo4.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_demo4.png" border="0" alt="legend_demo4"/></a>
<a href="examples/pylab_examples/legend_demo_custom_handler.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_demo_custom_handler.png" border="0" alt="legend_demo_custom_handler"/></a>
<a href="examples/pylab_examples/legend_scatter.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_scatter.png" border="0" alt="legend_scatter"/></a>
<a href="examples/pylab_examples/legend_translucent.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/legend_translucent.png" border="0" alt="legend_translucent"/></a>
<a href="examples/pylab_examples/line_collection.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/line_collection.png" border="0" alt="line_collection"/></a>
<a href="examples/pylab_examples/line_collection2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/line_collection2.png" border="0" alt="line_collection2"/></a>
<a href="examples/pylab_examples/line_styles.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/line_styles.png" border="0" alt="line_styles"/></a>
<a href="examples/pylab_examples/load_converter.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/load_converter.png" border="0" alt="load_converter"/></a>
<a href="examples/pylab_examples/loadrec.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/loadrec.png" border="0" alt="loadrec"/></a>
<a href="examples/pylab_examples/log_bar.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/log_bar.png" border="0" alt="log_bar"/></a>
<a href="examples/pylab_examples/log_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/log_demo.png" border="0" alt="log_demo"/></a>
<a href="examples/pylab_examples/log_test.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/log_test.png" border="0" alt="log_test"/></a>
<a href="examples/pylab_examples/logo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/logo.png" border="0" alt="logo"/></a>
<a href="examples/pylab_examples/major_minor_demo1.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/major_minor_demo1.png" border="0" alt="major_minor_demo1"/></a>
<a href="examples/pylab_examples/major_minor_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/major_minor_demo2.png" border="0" alt="major_minor_demo2"/></a>
<a href="examples/pylab_examples/manual_axis.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/manual_axis.png" border="0" alt="manual_axis"/></a>
<a href="examples/pylab_examples/marker_path.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/marker_path.png" border="0" alt="marker_path"/></a>
<a href="examples/pylab_examples/masked_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/masked_demo.png" border="0" alt="masked_demo"/></a>
<a href="examples/pylab_examples/mathtext_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/mathtext_demo.png" border="0" alt="mathtext_demo"/></a>
<a href="examples/pylab_examples/matshow.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/matshow_00.png" border="0" alt="matshow"/></a>
<a href="examples/pylab_examples/matshow.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/matshow_01.png" border="0" alt="matshow"/></a>
<a href="examples/pylab_examples/matshow.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/matshow_04.png" border="0" alt="matshow"/></a>
<a href="examples/pylab_examples/mri_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/mri_demo.png" border="0" alt="mri_demo"/></a>
<a href="examples/pylab_examples/mri_with_eeg.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/mri_with_eeg.png" border="0" alt="mri_with_eeg"/></a>
<a href="examples/pylab_examples/multi_image.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multi_image.png" border="0" alt="multi_image"/></a>
<a href="examples/pylab_examples/multicolored_line.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multicolored_line_00.png" border="0" alt="multicolored_line"/></a>
<a href="examples/pylab_examples/multicolored_line.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multicolored_line_01.png" border="0" alt="multicolored_line"/></a>
<a href="examples/pylab_examples/multiline.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multiline.png" border="0" alt="multiline"/></a>
<a href="examples/pylab_examples/multiple_figs_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multiple_figs_demo_00.png" border="0" alt="multiple_figs_demo"/></a>
<a href="examples/pylab_examples/multiple_figs_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multiple_figs_demo_01.png" border="0" alt="multiple_figs_demo"/></a>
<a href="examples/pylab_examples/multiple_yaxis_with_spines.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/multiple_yaxis_with_spines.png" border="0" alt="multiple_yaxis_with_spines"/></a>
<a href="examples/pylab_examples/nan_test.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/nan_test.png" border="0" alt="nan_test"/></a>
<a href="examples/pylab_examples/newscalarformatter_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/newscalarformatter_demo_00.png" border="0" alt="newscalarformatter_demo"/></a>
<a href="examples/pylab_examples/newscalarformatter_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/newscalarformatter_demo_01.png" border="0" alt="newscalarformatter_demo"/></a>
<a href="examples/pylab_examples/newscalarformatter_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/newscalarformatter_demo_02.png" border="0" alt="newscalarformatter_demo"/></a>
<a href="examples/pylab_examples/newscalarformatter_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/newscalarformatter_demo_03.png" border="0" alt="newscalarformatter_demo"/></a>
<a href="examples/pylab_examples/patheffect_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/patheffect_demo.png" border="0" alt="patheffect_demo"/></a>
<a href="examples/pylab_examples/pcolor_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pcolor_demo.png" border="0" alt="pcolor_demo"/></a>
<a href="examples/pylab_examples/pcolor_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pcolor_demo2.png" border="0" alt="pcolor_demo2"/></a>
<a href="examples/pylab_examples/pcolor_log.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pcolor_log.png" border="0" alt="pcolor_log"/></a>
<a href="examples/pylab_examples/pcolor_small.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pcolor_small.png" border="0" alt="pcolor_small"/></a>
<a href="examples/pylab_examples/pie_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pie_demo.png" border="0" alt="pie_demo"/></a>
<a href="examples/pylab_examples/pie_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pie_demo2.png" border="0" alt="pie_demo2"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_00.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_01.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_02.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_03.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_04.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_05.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_06.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/plotfile_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/plotfile_demo_07.png" border="0" alt="plotfile_demo"/></a>
<a href="examples/pylab_examples/polar_bar.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/polar_bar.png" border="0" alt="polar_bar"/></a>
<a href="examples/pylab_examples/polar_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/polar_demo.png" border="0" alt="polar_demo"/></a>
<a href="examples/pylab_examples/polar_legend.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/polar_legend.png" border="0" alt="polar_legend"/></a>
<a href="examples/pylab_examples/polar_scatter.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/polar_scatter.png" border="0" alt="polar_scatter"/></a>
<a href="examples/pylab_examples/poormans_contour.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/poormans_contour.png" border="0" alt="poormans_contour"/></a>
<a href="examples/pylab_examples/psd_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/psd_demo.png" border="0" alt="psd_demo"/></a>
<a href="examples/pylab_examples/psd_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/psd_demo2.png" border="0" alt="psd_demo2"/></a>
<a href="examples/pylab_examples/psd_demo3.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/psd_demo3.png" border="0" alt="psd_demo3"/></a>
<a href="examples/pylab_examples/psd_demo_complex.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/psd_demo_complex.png" border="0" alt="psd_demo_complex"/></a>
<a href="examples/pylab_examples/pythonic_matplotlib.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/pythonic_matplotlib.png" border="0" alt="pythonic_matplotlib"/></a>
<a href="examples/pylab_examples/quadmesh_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quadmesh_demo.png" border="0" alt="quadmesh_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_00.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_01.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_02.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_03.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_04.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/quiver_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/quiver_demo_05.png" border="0" alt="quiver_demo"/></a>
<a href="examples/pylab_examples/scatter_custom_symbol.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_custom_symbol.png" border="0" alt="scatter_custom_symbol"/></a>
<a href="examples/pylab_examples/scatter_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_demo.png" border="0" alt="scatter_demo"/></a>
<a href="examples/pylab_examples/scatter_demo2.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_demo2.png" border="0" alt="scatter_demo2"/></a>
<a href="examples/pylab_examples/scatter_masked.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_masked.png" border="0" alt="scatter_masked"/></a>
<a href="examples/pylab_examples/scatter_star_poly.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_star_poly.png" border="0" alt="scatter_star_poly"/></a>
<a href="examples/pylab_examples/scatter_symbol.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/scatter_symbol.png" border="0" alt="scatter_symbol"/></a>
<a href="examples/pylab_examples/set_and_get.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/set_and_get.png" border="0" alt="set_and_get"/></a>
<a href="examples/pylab_examples/shading_example.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/shading_example.png" border="0" alt="shading_example"/></a>
<a href="examples/pylab_examples/shared_axis_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/shared_axis_demo.png" border="0" alt="shared_axis_demo"/></a>
<a href="examples/pylab_examples/show_colormaps.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/show_colormaps.png" border="0" alt="show_colormaps"/></a>
<a href="examples/pylab_examples/simple_plot.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/simple_plot.png" border="0" alt="simple_plot"/></a>
<a href="examples/pylab_examples/specgram_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/specgram_demo.png" border="0" alt="specgram_demo"/></a>
<a href="examples/pylab_examples/spine_placement_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/spine_placement_demo_00.png" border="0" alt="spine_placement_demo"/></a>
<a href="examples/pylab_examples/spine_placement_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/spine_placement_demo_01.png" border="0" alt="spine_placement_demo"/></a>
<a href="examples/pylab_examples/spine_placement_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/spine_placement_demo_02.png" border="0" alt="spine_placement_demo"/></a>
<a href="examples/pylab_examples/spine_placement_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/spine_placement_demo_03.png" border="0" alt="spine_placement_demo"/></a>
<a href="examples/pylab_examples/spy_demos.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/spy_demos.png" border="0" alt="spy_demos"/></a>
<a href="examples/pylab_examples/stackplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/stackplot_demo_00_00.png" border="0" alt="stackplot_demo"/></a>
<a href="examples/pylab_examples/stackplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/stackplot_demo_01_00.png" border="0" alt="stackplot_demo"/></a>
<a href="examples/pylab_examples/stem_plot.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/stem_plot.png" border="0" alt="stem_plot"/></a>
<a href="examples/pylab_examples/step_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/step_demo.png" border="0" alt="step_demo"/></a>
<a href="examples/pylab_examples/stix_fonts_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/stix_fonts_demo.png" border="0" alt="stix_fonts_demo"/></a>
<a href="examples/pylab_examples/stock_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/stock_demo.png" border="0" alt="stock_demo"/></a>
<a href="examples/pylab_examples/streamplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/streamplot_demo_00.png" border="0" alt="streamplot_demo"/></a>
<a href="examples/pylab_examples/streamplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/streamplot_demo_01.png" border="0" alt="streamplot_demo"/></a>
<a href="examples/pylab_examples/streamplot_with_mask.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/streamplot_with_mask.png" border="0" alt="streamplot_with_mask"/></a>
<a href="examples/pylab_examples/subplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplot_demo.png" border="0" alt="subplot_demo"/></a>
<a href="examples/pylab_examples/subplot_toolbar.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplot_toolbar_00.png" border="0" alt="subplot_toolbar"/></a>
<a href="examples/pylab_examples/subplot_toolbar.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplot_toolbar_01.png" border="0" alt="subplot_toolbar"/></a>
<a href="examples/pylab_examples/subplots_adjust.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_adjust.png" border="0" alt="subplots_adjust"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_00.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_01.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_02.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_03.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_04.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_05.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/subplots_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/subplots_demo_06.png" border="0" alt="subplots_demo"/></a>
<a href="examples/pylab_examples/symlog_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/symlog_demo.png" border="0" alt="symlog_demo"/></a>
<a href="examples/pylab_examples/table_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/table_demo.png" border="0" alt="table_demo"/></a>
<a href="examples/pylab_examples/tex_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tex_demo.png" border="0" alt="tex_demo"/></a>
<a href="examples/pylab_examples/tex_unicode_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tex_unicode_demo.png" border="0" alt="tex_unicode_demo"/></a>
<a href="examples/pylab_examples/text_handles.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/text_handles.png" border="0" alt="text_handles"/></a>
<a href="examples/pylab_examples/text_rotation.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/text_rotation.png" border="0" alt="text_rotation"/></a>
<a href="examples/pylab_examples/text_rotation_relative_to_line.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/text_rotation_relative_to_line.png" border="0" alt="text_rotation_relative_to_line"/></a>
<a href="examples/pylab_examples/text_themes.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/text_themes.png" border="0" alt="text_themes"/></a>
<a href="examples/pylab_examples/to_numeric.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/to_numeric.png" border="0" alt="to_numeric"/></a>
<a href="examples/pylab_examples/toggle_images.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/toggle_images.png" border="0" alt="toggle_images"/></a>
<a href="examples/pylab_examples/transoffset.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/transoffset.png" border="0" alt="transoffset"/></a>
<a href="examples/pylab_examples/tricontour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tricontour_demo_00.png" border="0" alt="tricontour_demo"/></a>
<a href="examples/pylab_examples/tricontour_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tricontour_demo_01.png" border="0" alt="tricontour_demo"/></a>
<a href="examples/pylab_examples/tricontour_vs_griddata.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tricontour_vs_griddata.png" border="0" alt="tricontour_vs_griddata"/></a>
<a href="examples/pylab_examples/tripcolor_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tripcolor_demo_00.png" border="0" alt="tripcolor_demo"/></a>
<a href="examples/pylab_examples/tripcolor_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tripcolor_demo_01.png" border="0" alt="tripcolor_demo"/></a>
<a href="examples/pylab_examples/tripcolor_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/tripcolor_demo_02.png" border="0" alt="tripcolor_demo"/></a>
<a href="examples/pylab_examples/triplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/triplot_demo_00.png" border="0" alt="triplot_demo"/></a>
<a href="examples/pylab_examples/triplot_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/triplot_demo_01.png" border="0" alt="triplot_demo"/></a>
<a href="examples/pylab_examples/unicode_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/unicode_demo.png" border="0" alt="unicode_demo"/></a>
<a href="examples/pylab_examples/usetex_baseline_test.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/usetex_baseline_test.png" border="0" alt="usetex_baseline_test"/></a>
<a href="examples/pylab_examples/usetex_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/usetex_demo.png" border="0" alt="usetex_demo"/></a>
<a href="examples/pylab_examples/usetex_fonteffects.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/usetex_fonteffects.png" border="0" alt="usetex_fonteffects"/></a>
<a href="examples/pylab_examples/vertical_ticklabels.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/vertical_ticklabels.png" border="0" alt="vertical_ticklabels"/></a>
<a href="examples/pylab_examples/vline_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/vline_demo.png" border="0" alt="vline_demo"/></a>
<a href="examples/pylab_examples/xcorr_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/xcorr_demo.png" border="0" alt="xcorr_demo"/></a>
<a href="examples/pylab_examples/zorder_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/zorder_demo_00.png" border="0" alt="zorder_demo"/></a>
<a href="examples/pylab_examples/zorder_demo.html"><img src="plot_directive/mpl_examples/pylab_examples/thumbnails/zorder_demo_01.png" border="0" alt="zorder_demo"/></a>
</div>
<div class="section" id="mplot3d"> <h4>mplot3d<a class="headerlink" href="#mplot3d" title="Permalink to this headline">¶</a></h4>
<a href="examples/mplot3d/2dcollections3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/2dcollections3d_demo.png" border="0" alt="2dcollections3d_demo"/></a>
<a href="examples/mplot3d/bars3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/bars3d_demo.png" border="0" alt="bars3d_demo"/></a>
<a href="examples/mplot3d/contour3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/contour3d_demo.png" border="0" alt="contour3d_demo"/></a>
<a href="examples/mplot3d/contour3d_demo2.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/contour3d_demo2.png" border="0" alt="contour3d_demo2"/></a>
<a href="examples/mplot3d/contour3d_demo3.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/contour3d_demo3.png" border="0" alt="contour3d_demo3"/></a>
<a href="examples/mplot3d/contourf3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/contourf3d_demo.png" border="0" alt="contourf3d_demo"/></a>
<a href="examples/mplot3d/contourf3d_demo2.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/contourf3d_demo2.png" border="0" alt="contourf3d_demo2"/></a>
<a href="examples/mplot3d/hist3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/hist3d_demo.png" border="0" alt="hist3d_demo"/></a>
<a href="examples/mplot3d/lines3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/lines3d_demo.png" border="0" alt="lines3d_demo"/></a>
<a href="examples/mplot3d/lorenz_attractor.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/lorenz_attractor.png" border="0" alt="lorenz_attractor"/></a>
<a href="examples/mplot3d/mixed_subplots_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/mixed_subplots_demo.png" border="0" alt="mixed_subplots_demo"/></a>
<a href="examples/mplot3d/offset_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/offset_demo.png" border="0" alt="offset_demo"/></a>
<a href="examples/mplot3d/pathpatch3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/pathpatch3d_demo.png" border="0" alt="pathpatch3d_demo"/></a>
<a href="examples/mplot3d/polys3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/polys3d_demo.png" border="0" alt="polys3d_demo"/></a>
<a href="examples/mplot3d/rotate_axes3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/rotate_axes3d_demo.png" border="0" alt="rotate_axes3d_demo"/></a>
<a href="examples/mplot3d/scatter3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/scatter3d_demo.png" border="0" alt="scatter3d_demo"/></a>
<a href="examples/mplot3d/subplot3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/subplot3d_demo.png" border="0" alt="subplot3d_demo"/></a>
<a href="examples/mplot3d/surface3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/surface3d_demo.png" border="0" alt="surface3d_demo"/></a>
<a href="examples/mplot3d/surface3d_demo2.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/surface3d_demo2.png" border="0" alt="surface3d_demo2"/></a>
<a href="examples/mplot3d/surface3d_demo3.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/surface3d_demo3.png" border="0" alt="surface3d_demo3"/></a>
<a href="examples/mplot3d/surface3d_radial_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/surface3d_radial_demo.png" border="0" alt="surface3d_radial_demo"/></a>
<a href="examples/mplot3d/text3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/text3d_demo.png" border="0" alt="text3d_demo"/></a>
<a href="examples/mplot3d/trisurf3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/trisurf3d_demo.png" border="0" alt="trisurf3d_demo"/></a>
<a href="examples/mplot3d/wire3d_animation_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/wire3d_animation_demo.png" border="0" alt="wire3d_animation_demo"/></a>
<a href="examples/mplot3d/wire3d_demo.html"><img src="plot_directive/mpl_examples/mplot3d/thumbnails/wire3d_demo.png" border="0" alt="wire3d_demo"/></a>
</div>
<div class="section" id="widgets"> <h4>widgets<a class="headerlink" href="#widgets" title="Permalink to this headline">¶</a></h4>
<a href="examples/widgets/cursor.html"><img src="plot_directive/mpl_examples/widgets/thumbnails/cursor.png" border="0" alt="cursor"/></a>
<a href="examples/widgets/slider_demo.html"><img src="plot_directive/mpl_examples/widgets/thumbnails/slider_demo.png" border="0" alt="slider_demo"/></a>
</div>
<div class="section" id="axes_grid"> <h4>axes_grid<a class="headerlink" href="#axes_grid" title="Permalink to this headline">¶</a></h4>
<a href="examples/axes_grid/demo_axes_divider.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_divider_01_00.png" border="0" alt="demo_axes_divider"/></a>
<a href="examples/axes_grid/demo_axes_grid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_grid.png" border="0" alt="demo_axes_grid"/></a>
<a href="examples/axes_grid/demo_axes_grid2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_grid2.png" border="0" alt="demo_axes_grid2"/></a>
<a href="examples/axes_grid/demo_axes_hbox_divider.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_hbox_divider.png" border="0" alt="demo_axes_hbox_divider"/></a>
<a href="examples/axes_grid/demo_axes_rgb.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_rgb_00.png" border="0" alt="demo_axes_rgb"/></a>
<a href="examples/axes_grid/demo_axes_rgb.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axes_rgb_01.png" border="0" alt="demo_axes_rgb"/></a>
<a href="examples/axes_grid/demo_axisline_style.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_axisline_style.png" border="0" alt="demo_axisline_style"/></a>
<a href="examples/axes_grid/demo_colorbar_with_inset_locator.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_colorbar_with_inset_locator.png" border="0" alt="demo_colorbar_with_inset_locator"/></a>
<a href="examples/axes_grid/demo_curvelinear_grid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_curvelinear_grid.png" border="0" alt="demo_curvelinear_grid"/></a>
<a href="examples/axes_grid/demo_curvelinear_grid2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_curvelinear_grid2.png" border="0" alt="demo_curvelinear_grid2"/></a>
<a href="examples/axes_grid/demo_edge_colorbar.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_edge_colorbar.png" border="0" alt="demo_edge_colorbar"/></a>
<a href="examples/axes_grid/demo_floating_axes.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_floating_axes.png" border="0" alt="demo_floating_axes"/></a>
<a href="examples/axes_grid/demo_floating_axis.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_floating_axis.png" border="0" alt="demo_floating_axis"/></a>
<a href="examples/axes_grid/demo_parasite_axes2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/demo_parasite_axes2_00_00.png" border="0" alt="demo_parasite_axes2"/></a>
<a href="examples/axes_grid/inset_locator_demo.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/inset_locator_demo.png" border="0" alt="inset_locator_demo"/></a>
<a href="examples/axes_grid/inset_locator_demo2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/inset_locator_demo2.png" border="0" alt="inset_locator_demo2"/></a>
<a href="examples/axes_grid/make_room_for_ylabel_using_axesgrid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/make_room_for_ylabel_using_axesgrid_00.png" border="0" alt="make_room_for_ylabel_using_axesgrid"/></a>
<a href="examples/axes_grid/make_room_for_ylabel_using_axesgrid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/make_room_for_ylabel_using_axesgrid_01.png" border="0" alt="make_room_for_ylabel_using_axesgrid"/></a>
<a href="examples/axes_grid/make_room_for_ylabel_using_axesgrid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/make_room_for_ylabel_using_axesgrid_02.png" border="0" alt="make_room_for_ylabel_using_axesgrid"/></a>
<a href="examples/axes_grid/parasite_simple2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/parasite_simple2.png" border="0" alt="parasite_simple2"/></a>
<a href="examples/axes_grid/simple_anchored_artists.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/simple_anchored_artists.png" border="0" alt="simple_anchored_artists"/></a>
<a href="examples/axes_grid/simple_axesgrid.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/simple_axesgrid.png" border="0" alt="simple_axesgrid"/></a>
<a href="examples/axes_grid/simple_axesgrid2.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/simple_axesgrid2.png" border="0" alt="simple_axesgrid2"/></a>
<a href="examples/axes_grid/simple_axisline4.html"><img src="plot_directive/mpl_examples/axes_grid/thumbnails/simple_axisline4.png" border="0" alt="simple_axisline4"/></a>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li><a href="index.html">home</a>| </li>
<li><a href="http://www.matplotlib.org/downloads.html">downloads</a>| </li>
<li><a href="search.html">search</a>| </li>
<li><a href="examples/index.html">examples</a>| </li>
<li><a href="#">gallery</a>| </li>
<li><a href="citing.html">citation</a>| </li>
<li><a href="contents.html">docs</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2013 John Hunter, Darren Dale, Eric Firing, Michael Droettboom and the matplotlib development team.
Last updated on May 29, 2013.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2b1.
</div>
</body>
</html>