@@ -37,3 +37,122 @@ Once you have the prerequisites you can install using the standard incantation
37
37
``` bash
38
38
cabal install matplotlib
39
39
```
40
+
41
+ ### Examples
42
+
43
+ Click on any of the examples below to go to the corresponding test that
44
+ generates it. Depending on your matplotlib version default colors might be
45
+ different.
46
+
47
+ [ ![ quadratic] [ img_quadratic ]] [ url_quadratic ]
48
+ [ ![ labelled-histogram] [ img_labelled-histogram ]] [ url_labelled-histogram ]
49
+ [ ![ projections] [ img_projections ]] [ url_projections ]
50
+ [ ![ histogram] [ img_histogram ]] [ url_histogram ]
51
+ [ ![ pcolorlog] [ img_pcolorlog ]] [ url_pcolorlog ]
52
+ [ ![ scatter] [ img_scatter ]] [ url_scatter ]
53
+ [ ![ streamplot] [ img_streamplot ]] [ url_streamplot ]
54
+ [ ![ hist2DLog] [ img_hist2DLog ]] [ url_hist2DLog ]
55
+ [ ![ stacked] [ img_stacked ]] [ url_stacked ]
56
+ [ ![ legend] [ img_legend ]] [ url_legend ]
57
+ [ ![ errorbar] [ img_errorbar ]] [ url_errorbar ]
58
+ [ ![ griddata] [ img_griddata ]] [ url_griddata ]
59
+ [ ![ line-options] [ img_line-options ]] [ url_line-options ]
60
+ [ ![ quiver-fancy] [ img_quiver-fancy ]] [ url_quiver-fancy ]
61
+ [ ![ annotation] [ img_annotation ]] [ url_annotation ]
62
+ [ ![ integral] [ img_integral ]] [ url_integral ]
63
+ [ ![ contour] [ img_contour ]] [ url_contour ]
64
+ [ ![ boxplot] [ img_boxplot ]] [ url_boxplot ]
65
+ [ ![ show-matrix] [ img_show-matrix ]] [ url_show-matrix ]
66
+ [ ![ scatterhist] [ img_scatterhist ]] [ url_scatterhist ]
67
+ [ ![ hinton] [ img_hinton ]] [ url_hinton ]
68
+ [ ![ density] [ img_density ]] [ url_density ]
69
+ [ ![ violinplot] [ img_violinplot ]] [ url_violinplot ]
70
+ [ ![ histMulti] [ img_histMulti ]] [ url_histMulti ]
71
+ [ ![ spines] [ img_spines ]] [ url_spines ]
72
+ [ ![ corr] [ img_corr ]] [ url_corr ]
73
+ [ ![ cumulative] [ img_cumulative ]] [ url_cumulative ]
74
+ [ ![ polar] [ img_polar ]] [ url_polar ]
75
+ [ ![ hists] [ img_hists ]] [ url_hists ]
76
+ [ ![ tex] [ img_tex ]] [ url_tex ]
77
+ [ ![ eventplot] [ img_eventplot ]] [ url_eventplot ]
78
+ [ ![ line-function] [ img_line-function ]] [ url_line-function ]
79
+ [ ![ density-bandwidth] [ img_density-bandwidth ]] [ url_density-bandwidth ]
80
+ [ ![ bivariateNormal] [ img_bivariateNormal ]] [ url_bivariateNormal ]
81
+ [ ![ quiver] [ img_quiver ]] [ url_quiver ]
82
+ [ ![ pie] [ img_pie ]] [ url_pie ]
83
+ [ ![ images] [ img_images ]] [ url_images ]
84
+
85
+ [ img_pcolorlog ] : https://i.imgur.com/O8hU7Rl.png " pcolorlog "
86
+ [ url_pcolorlog ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L495
87
+ [ img_griddata ] : https://i.imgur.com/Lh2xOPf.png " griddata "
88
+ [ url_griddata ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L602
89
+ [ img_streamplot ] : https://i.imgur.com/AveIggT.png " streamplot "
90
+ [ url_streamplot ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L582
91
+ [ img_hist2DLog ] : https://i.imgur.com/PnPyJzO.png " hist2DLog "
92
+ [ url_hist2DLog ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L275
93
+ [ img_cumulative ] : https://i.imgur.com/W9JinZC.png " cumulative "
94
+ [ url_cumulative ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L217
95
+ [ img_eventplot ] : https://i.imgur.com/2chP6qg.png " eventplot "
96
+ [ url_eventplot ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L280
97
+ [ img_quiver ] : https://i.imgur.com/7G7r9gu.png " quiver "
98
+ [ url_quiver ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L423
99
+ [ img_labelled-histogram ] : https://i.imgur.com/cOCIlpy.png " labelled-histogram "
100
+ [ url_labelled-histogram ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L226
101
+ [ img_line-options ] : https://i.imgur.com/0Jr83hl.png " line-options "
102
+ [ url_line-options ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L249
103
+ [ img_violinplot ] : https://i.imgur.com/MaWL0BD.png " violinplot "
104
+ [ url_violinplot ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L298
105
+ [ img_density ] : https://i.imgur.com/v7GoIno.png " density "
106
+ [ url_density ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L241
107
+ [ img_tex ] : https://i.imgur.com/liZci2C.png " tex "
108
+ [ url_tex ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L259
109
+ [ img_scatterhist ] : https://i.imgur.com/DG3obq8.png " scatterhist "
110
+ [ url_scatterhist ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L305
111
+ [ img_boxplot ] : https://i.imgur.com/aaoMEql.png " boxplot "
112
+ [ url_boxplot ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L292
113
+ [ img_histogram ] : https://i.imgur.com/yO6dxEO.png " histogram "
114
+ [ url_histogram ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L214
115
+ [ img_images ] : https://i.imgur.com/3ZqQDxR.png " images "
116
+ [ url_images ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L482
117
+ [ img_polar ] : https://i.imgur.com/BTXgvqa.png " polar "
118
+ [ url_polar ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L450
119
+ [ img_histMulti ] : https://i.imgur.com/hO2CFGQ.png " histMulti "
120
+ [ url_histMulti ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L334
121
+ [ img_annotation ] : https://i.imgur.com/cPSB8BX.png " annotation "
122
+ [ url_annotation ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L539
123
+ [ img_corr ] : https://i.imgur.com/fh4Bv2X.png " corr "
124
+ [ url_corr ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L254
125
+ [ img_scatter ] : https://i.imgur.com/qg7W3oc.png " scatter "
126
+ [ url_scatter ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L219
127
+ [ img_hinton ] : https://i.imgur.com/RPkTFIJ.png " hinton "
128
+ [ url_hinton ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L380
129
+ [ img_quiver-fancy ] : https://i.imgur.com/VQ5RrfJ.png " quiver-fancy "
130
+ [ url_quiver-fancy ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L434
131
+ [ img_quadratic ] : https://i.imgur.com/fs96snF.png " quadratic "
132
+ [ url_quadratic ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L245
133
+ [ img_line-function ] : https://i.imgur.com/5REiBVO.png " line-function "
134
+ [ url_line-function ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L243
135
+ [ img_integral ] : https://i.imgur.com/OxGr14f.png " integral "
136
+ [ url_integral ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L396
137
+ [ img_contour ] : https://i.imgur.com/kMxGGot.png " contour "
138
+ [ url_contour ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L224
139
+ [ img_projections ] : https://i.imgur.com/laubT7H.png " projections "
140
+ [ url_projections ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L247
141
+ [ img_legend ] : https://i.imgur.com/EmpXjUY.png " legend "
142
+ [ url_legend ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L270
143
+ [ img_spines ] : https://i.imgur.com/fc9xwh5.png " spines "
144
+ [ url_spines ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L352
145
+ [ img_density-bandwidth ] : https://i.imgur.com/e48WAPS.png " density-bandwidth "
146
+ [ url_density-bandwidth ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L238
147
+ [ img_bivariateNormal ] : https://i.imgur.com/ngX1N2R.png " bivariateNormal "
148
+ [ url_bivariateNormal ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L465
149
+ [ img_pie ] : https://i.imgur.com/DSRqr14.png " pie "
150
+ [ url_pie ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L516
151
+ [ img_show-matrix ] : https://i.imgur.com/bd6x6Es.png " show-matrix "
152
+ [ url_show-matrix ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L267
153
+ [ img_hists ] : https://i.imgur.com/hJaxZJt.png " hists "
154
+ [ url_hists ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L371
155
+ [ img_errorbar ] : https://i.imgur.com/ooTcL40.png " errorbar "
156
+ [ url_errorbar ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L287
157
+ [ img_stacked ] : https://i.imgur.com/TIqlAtR.png " stacked "
158
+ [ url_stacked ] : https://github.com/abarbu/matplotlib-haskell/blob/master/test/Spec.hs#L523
0 commit comments