diff --git a/README.md b/README.md index feb8502b..1a52aed7 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Please add wishlist items, bugs, or any other comments/questions to the issues l - [Qwt.jl](docs/qwt_examples.md) - [Gadfly.jl](docs/gadfly_examples.md) - [UnicodePlots.jl](docs/unicodeplots_examples.md) +- [PyPlot.jl](docs/pyplot_examples.md) ## Installation diff --git a/docs/example_generation.jl b/docs/example_generation.jl index e54e8a51..37ded2f9 100644 --- a/docs/example_generation.jl +++ b/docs/example_generation.jl @@ -52,6 +52,9 @@ const examples = PlotExample[ PlotExample("Lots of line types", "Options: (:line, :step, :stepinverted, :sticks, :dots, :none, :heatmap, :hexbin, :hist, :bar) \nNote: some may not work with all backends", [:(plot(rand(20,4); linetypes=[:line, :step, :sticks, :dots], labels=["line","step","sticks","dots"]))]), + PlotExample("Lots of line styles", + "Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) \nNote: some may not work with all backends", + [:(plot(rand(20,5); linestyles=[:solid, :dash, :dot, :dashdot, :dashdotdot], labels=["solid", "dash", "dot", "dashdot", "dashdotdot"]))]), PlotExample("Lots of marker types", "Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) \nNote: some may not work with all backends", [:(plot(repmat(collect(1:10)',10,1); markers=[:ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon], @@ -128,9 +131,9 @@ end # run it! # note: generate separately so it's easy to comment out -# generate_markdown(:qwt) -# generate_markdown(:gadfly) -# generate_markdown(:unicodeplots) +generate_markdown(:qwt) +generate_markdown(:gadfly) +generate_markdown(:unicodeplots) generate_markdown(:pyplot) diff --git a/docs/gadfly_examples.md b/docs/gadfly_examples.md index 8be5767d..3daf3c55 100644 --- a/docs/gadfly_examples.md +++ b/docs/gadfly_examples.md @@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments. Note: This is only supported with Qwt right now ```julia -plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) +plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT") ``` ![](../img/gadfly/gadfly_example_6.png) @@ -72,16 +72,6 @@ plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,colors=[:red,:blue] ![](../img/gadfly/gadfly_example_7.png) -### Build plot in pieces - -Start with a base plot... - -```julia -plot(rand(100) / 3; reg=true,fillto=0) -``` - -![](../img/gadfly/gadfly_example_8.png) - ### and add to it later. @@ -97,7 +87,7 @@ scatter!(rand(100); markersize=6,color=:blue) ```julia -heatmap(randn(10000),randn(10000); nbins=200) +heatmap(randn(10000),randn(10000); nbins=100) ``` ![](../img/gadfly/gadfly_example_10.png) @@ -113,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st ![](../img/gadfly/gadfly_example_11.png) +### Lots of line styles + +Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) +Note: some may not work with all backends + +```julia +plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"]) +``` + +![](../img/gadfly/gadfly_example_12.png) + +### Lots of marker types + +Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) +Note: some may not work with all backends + +```julia +plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10) +``` + +![](../img/gadfly/gadfly_example_13.png) + ### Bar x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) @@ -121,7 +133,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints bar(randn(1000)) ``` -![](../img/gadfly/gadfly_example_12.png) +![](../img/gadfly/gadfly_example_14.png) ### Histogram @@ -131,7 +143,7 @@ note: fillto isn't supported on all backends histogram(randn(1000); nbins=50,fillto=20) ``` -![](../img/gadfly/gadfly_example_13.png) +![](../img/gadfly/gadfly_example_15.png) ### Subplots @@ -146,7 +158,7 @@ histogram(randn(1000); nbins=50,fillto=20) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) ``` -![](../img/gadfly/gadfly_example_14.png) +![](../img/gadfly/gadfly_example_16.png) ### Adding to subplots @@ -156,7 +168,7 @@ Note here the automatic grid layout, as well as the order in which new series ar subplot(randn(100,5); n=4) ``` -![](../img/gadfly/gadfly_example_15.png) +![](../img/gadfly/gadfly_example_17.png) ### @@ -166,5 +178,5 @@ subplot(randn(100,5); n=4) subplot!(randn(100,3)) ``` -![](../img/gadfly/gadfly_example_16.png) +![](../img/gadfly/gadfly_example_18.png) diff --git a/docs/pyplot_examples.md b/docs/pyplot_examples.md index 07598c42..e564eb88 100644 --- a/docs/pyplot_examples.md +++ b/docs/pyplot_examples.md @@ -113,6 +113,17 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st ![](../img/pyplot/pyplot_example_11.png) +### Lots of line styles + +Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) +Note: some may not work with all backends + +```julia +plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"]) +``` + +![](../img/pyplot/pyplot_example_12.png) + ### Lots of marker types Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) @@ -122,7 +133,7 @@ Note: some may not work with all backends plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10) ``` -![](../img/pyplot/pyplot_example_12.png) +![](../img/pyplot/pyplot_example_13.png) ### Bar @@ -132,7 +143,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints bar(randn(1000)) ``` -![](../img/pyplot/pyplot_example_13.png) +![](../img/pyplot/pyplot_example_14.png) ### Histogram @@ -142,5 +153,5 @@ note: fillto isn't supported on all backends histogram(randn(1000); nbins=50,fillto=20) ``` -![](../img/pyplot/pyplot_example_14.png) +![](../img/pyplot/pyplot_example_15.png) diff --git a/docs/qwt_examples.md b/docs/qwt_examples.md index ccf6e316..95f42fdd 100644 --- a/docs/qwt_examples.md +++ b/docs/qwt_examples.md @@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments. Note: This is only supported with Qwt right now ```julia -plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) +plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT") ``` ![](../img/qwt/qwt_example_6.png) @@ -97,7 +97,7 @@ scatter!(rand(100); markersize=6,color=:blue) ```julia -heatmap(randn(10000),randn(10000); nbins=200) +heatmap(randn(10000),randn(10000); nbins=100) ``` ![](../img/qwt/qwt_example_10.png) @@ -113,6 +113,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st ![](../img/qwt/qwt_example_11.png) +### Lots of line styles + +Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) +Note: some may not work with all backends + +```julia +plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"]) +``` + +![](../img/qwt/qwt_example_12.png) + +### Lots of marker types + +Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) +Note: some may not work with all backends + +```julia +plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10) +``` + +![](../img/qwt/qwt_example_13.png) + ### Bar x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) @@ -121,7 +143,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints bar(randn(1000)) ``` -![](../img/qwt/qwt_example_12.png) +![](../img/qwt/qwt_example_14.png) ### Histogram @@ -131,7 +153,7 @@ note: fillto isn't supported on all backends histogram(randn(1000); nbins=50,fillto=20) ``` -![](../img/qwt/qwt_example_13.png) +![](../img/qwt/qwt_example_15.png) ### Subplots @@ -146,7 +168,7 @@ histogram(randn(1000); nbins=50,fillto=20) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) ``` -![](../img/qwt/qwt_example_14.png) +![](../img/qwt/qwt_example_16.png) ### Adding to subplots @@ -156,7 +178,7 @@ Note here the automatic grid layout, as well as the order in which new series ar subplot(randn(100,5); n=4) ``` -![](../img/qwt/qwt_example_15.png) +![](../img/qwt/qwt_example_17.png) ### @@ -166,5 +188,5 @@ subplot(randn(100,5); n=4) subplot!(randn(100,3)) ``` -![](../img/qwt/qwt_example_16.png) +![](../img/qwt/qwt_example_18.png) diff --git a/docs/unicodeplots_examples.md b/docs/unicodeplots_examples.md index 40618123..de5c6c67 100644 --- a/docs/unicodeplots_examples.md +++ b/docs/unicodeplots_examples.md @@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments. Note: This is only supported with Qwt right now ```julia -plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right]) +plot(Vector[randn(100),randn(100) * 100]; axiss=[:left,:right],ylabel="LEFT",yrightlabel="RIGHT") ``` ![](../img/unicodeplots/unicodeplots_example_6.png) @@ -103,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st ![](../img/unicodeplots/unicodeplots_example_11.png) +### Lots of line styles + +Options: (:solid, :dash, :dot, :dashdot, :dashdotdot) +Note: some may not work with all backends + +```julia +plot(rand(20,5); linestyles=[:solid,:dash,:dot,:dashdot,:dashdotdot],labels=["solid","dash","dot","dashdot","dashdotdot"]) +``` + +![](../img/unicodeplots/unicodeplots_example_12.png) + +### Lots of marker types + +Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon) +Note: some may not work with all backends + +```julia +plot(repmat(collect(1:10)',10,1); markers=[:ellipse,:rect,:diamond,:utriangle,:dtriangle,:cross,:xcross,:star1,:star2,:hexagon],labels=["ellipse","rect","diamond","utriangle","dtriangle","cross","xcross","star1","star2","hexagon"],linetype=:none,markersize=10) +``` + +![](../img/unicodeplots/unicodeplots_example_13.png) + ### Bar x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints) @@ -111,7 +133,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints bar(randn(1000)) ``` -![](../img/unicodeplots/unicodeplots_example_12.png) +![](../img/unicodeplots/unicodeplots_example_14.png) ### Histogram @@ -121,7 +143,7 @@ note: fillto isn't supported on all backends histogram(randn(1000); nbins=50,fillto=20) ``` -![](../img/unicodeplots/unicodeplots_example_13.png) +![](../img/unicodeplots/unicodeplots_example_15.png) ### Subplots @@ -136,7 +158,7 @@ histogram(randn(1000); nbins=50,fillto=20) subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false) ``` -![](../img/unicodeplots/unicodeplots_example_14.png) +![](../img/unicodeplots/unicodeplots_example_16.png) ### Adding to subplots @@ -146,7 +168,7 @@ Note here the automatic grid layout, as well as the order in which new series ar subplot(randn(100,5); n=4) ``` -![](../img/unicodeplots/unicodeplots_example_15.png) +![](../img/unicodeplots/unicodeplots_example_17.png) ### @@ -156,5 +178,5 @@ subplot(randn(100,5); n=4) subplot!(randn(100,3)) ``` -![](../img/unicodeplots/unicodeplots_example_16.png) +![](../img/unicodeplots/unicodeplots_example_18.png) diff --git a/img/gadfly/gadfly_example_1.png b/img/gadfly/gadfly_example_1.png index d896e7e1..6e704315 100644 Binary files a/img/gadfly/gadfly_example_1.png and b/img/gadfly/gadfly_example_1.png differ diff --git a/img/gadfly/gadfly_example_10.png b/img/gadfly/gadfly_example_10.png index b0efcbe8..edd54ba6 100644 Binary files a/img/gadfly/gadfly_example_10.png and b/img/gadfly/gadfly_example_10.png differ diff --git a/img/gadfly/gadfly_example_11.png b/img/gadfly/gadfly_example_11.png index 7fb9b420..5382c68c 100644 Binary files a/img/gadfly/gadfly_example_11.png and b/img/gadfly/gadfly_example_11.png differ diff --git a/img/gadfly/gadfly_example_12.png b/img/gadfly/gadfly_example_12.png index 861a5235..0e107134 100644 Binary files a/img/gadfly/gadfly_example_12.png and b/img/gadfly/gadfly_example_12.png differ diff --git a/img/gadfly/gadfly_example_13.png b/img/gadfly/gadfly_example_13.png index fd73117e..560918c3 100644 Binary files a/img/gadfly/gadfly_example_13.png and b/img/gadfly/gadfly_example_13.png differ diff --git a/img/gadfly/gadfly_example_14.png b/img/gadfly/gadfly_example_14.png index c5970064..0724daed 100644 Binary files a/img/gadfly/gadfly_example_14.png and b/img/gadfly/gadfly_example_14.png differ diff --git a/img/gadfly/gadfly_example_15.png b/img/gadfly/gadfly_example_15.png index 4d0cdac7..f9ff455c 100644 Binary files a/img/gadfly/gadfly_example_15.png and b/img/gadfly/gadfly_example_15.png differ diff --git a/img/gadfly/gadfly_example_16.png b/img/gadfly/gadfly_example_16.png index 23fae5c0..1975d7ec 100644 Binary files a/img/gadfly/gadfly_example_16.png and b/img/gadfly/gadfly_example_16.png differ diff --git a/img/gadfly/gadfly_example_17.png b/img/gadfly/gadfly_example_17.png new file mode 100644 index 00000000..f853f3c7 Binary files /dev/null and b/img/gadfly/gadfly_example_17.png differ diff --git a/img/gadfly/gadfly_example_18.png b/img/gadfly/gadfly_example_18.png new file mode 100644 index 00000000..80f72d22 Binary files /dev/null and b/img/gadfly/gadfly_example_18.png differ diff --git a/img/gadfly/gadfly_example_5.png b/img/gadfly/gadfly_example_5.png index 38dcc014..20d89f08 100644 Binary files a/img/gadfly/gadfly_example_5.png and b/img/gadfly/gadfly_example_5.png differ diff --git a/img/gadfly/gadfly_example_6.png b/img/gadfly/gadfly_example_6.png index 336b0578..5a03ba9a 100644 Binary files a/img/gadfly/gadfly_example_6.png and b/img/gadfly/gadfly_example_6.png differ diff --git a/img/gadfly/gadfly_example_7.png b/img/gadfly/gadfly_example_7.png index 1fcebdea..8f762113 100644 Binary files a/img/gadfly/gadfly_example_7.png and b/img/gadfly/gadfly_example_7.png differ diff --git a/img/gadfly/gadfly_example_8.png b/img/gadfly/gadfly_example_8.png index 90a9937d..e69de29b 100644 Binary files a/img/gadfly/gadfly_example_8.png and b/img/gadfly/gadfly_example_8.png differ diff --git a/img/gadfly/gadfly_example_9.png b/img/gadfly/gadfly_example_9.png index a8d9fad3..94869099 100644 Binary files a/img/gadfly/gadfly_example_9.png and b/img/gadfly/gadfly_example_9.png differ diff --git a/img/pyplot/pyplot_example_1.png b/img/pyplot/pyplot_example_1.png index 4e185b23..c1f8405a 100644 Binary files a/img/pyplot/pyplot_example_1.png and b/img/pyplot/pyplot_example_1.png differ diff --git a/img/pyplot/pyplot_example_10.png b/img/pyplot/pyplot_example_10.png index d9352f53..50d5c886 100644 Binary files a/img/pyplot/pyplot_example_10.png and b/img/pyplot/pyplot_example_10.png differ diff --git a/img/pyplot/pyplot_example_11.png b/img/pyplot/pyplot_example_11.png index e6006d6f..e01e7550 100644 Binary files a/img/pyplot/pyplot_example_11.png and b/img/pyplot/pyplot_example_11.png differ diff --git a/img/pyplot/pyplot_example_12.png b/img/pyplot/pyplot_example_12.png index 8cfbf967..15d90550 100644 Binary files a/img/pyplot/pyplot_example_12.png and b/img/pyplot/pyplot_example_12.png differ diff --git a/img/pyplot/pyplot_example_13.png b/img/pyplot/pyplot_example_13.png index 3ecc0b61..bed5a4fb 100644 Binary files a/img/pyplot/pyplot_example_13.png and b/img/pyplot/pyplot_example_13.png differ diff --git a/img/pyplot/pyplot_example_14.png b/img/pyplot/pyplot_example_14.png index b7a7be77..d0276192 100644 Binary files a/img/pyplot/pyplot_example_14.png and b/img/pyplot/pyplot_example_14.png differ diff --git a/img/pyplot/pyplot_example_15.png b/img/pyplot/pyplot_example_15.png new file mode 100644 index 00000000..0d083bc2 Binary files /dev/null and b/img/pyplot/pyplot_example_15.png differ diff --git a/img/pyplot/pyplot_example_2.png b/img/pyplot/pyplot_example_2.png index 7f645507..2792cc85 100644 Binary files a/img/pyplot/pyplot_example_2.png and b/img/pyplot/pyplot_example_2.png differ diff --git a/img/pyplot/pyplot_example_3.png b/img/pyplot/pyplot_example_3.png index fa581cef..2c3432af 100644 Binary files a/img/pyplot/pyplot_example_3.png and b/img/pyplot/pyplot_example_3.png differ diff --git a/img/pyplot/pyplot_example_4.png b/img/pyplot/pyplot_example_4.png index 2d8f24f2..85088413 100644 Binary files a/img/pyplot/pyplot_example_4.png and b/img/pyplot/pyplot_example_4.png differ diff --git a/img/pyplot/pyplot_example_5.png b/img/pyplot/pyplot_example_5.png index 776a4fdc..0d96277d 100644 Binary files a/img/pyplot/pyplot_example_5.png and b/img/pyplot/pyplot_example_5.png differ diff --git a/img/pyplot/pyplot_example_6.png b/img/pyplot/pyplot_example_6.png index b6fd1275..d94fbb2b 100644 Binary files a/img/pyplot/pyplot_example_6.png and b/img/pyplot/pyplot_example_6.png differ diff --git a/img/pyplot/pyplot_example_7.png b/img/pyplot/pyplot_example_7.png index 59bc03bc..419efb42 100644 Binary files a/img/pyplot/pyplot_example_7.png and b/img/pyplot/pyplot_example_7.png differ diff --git a/img/pyplot/pyplot_example_8.png b/img/pyplot/pyplot_example_8.png index f330b84c..f8da7960 100644 Binary files a/img/pyplot/pyplot_example_8.png and b/img/pyplot/pyplot_example_8.png differ diff --git a/img/pyplot/pyplot_example_9.png b/img/pyplot/pyplot_example_9.png index 4180d2e0..839289f2 100644 Binary files a/img/pyplot/pyplot_example_9.png and b/img/pyplot/pyplot_example_9.png differ diff --git a/img/qwt/qwt_example_1.png b/img/qwt/qwt_example_1.png index 143375b9..f748c7af 100644 Binary files a/img/qwt/qwt_example_1.png and b/img/qwt/qwt_example_1.png differ diff --git a/img/qwt/qwt_example_10.png b/img/qwt/qwt_example_10.png index 94449aed..41408629 100644 Binary files a/img/qwt/qwt_example_10.png and b/img/qwt/qwt_example_10.png differ diff --git a/img/qwt/qwt_example_11.png b/img/qwt/qwt_example_11.png index 46430d1a..7ff91069 100644 Binary files a/img/qwt/qwt_example_11.png and b/img/qwt/qwt_example_11.png differ diff --git a/img/qwt/qwt_example_12.png b/img/qwt/qwt_example_12.png index fbd8caac..565476a3 100644 Binary files a/img/qwt/qwt_example_12.png and b/img/qwt/qwt_example_12.png differ diff --git a/img/qwt/qwt_example_13.png b/img/qwt/qwt_example_13.png index 3377031a..91fad26f 100644 Binary files a/img/qwt/qwt_example_13.png and b/img/qwt/qwt_example_13.png differ diff --git a/img/qwt/qwt_example_14.png b/img/qwt/qwt_example_14.png index 541ece93..e397aede 100644 Binary files a/img/qwt/qwt_example_14.png and b/img/qwt/qwt_example_14.png differ diff --git a/img/qwt/qwt_example_15.png b/img/qwt/qwt_example_15.png index 4ac94877..fa151780 100644 Binary files a/img/qwt/qwt_example_15.png and b/img/qwt/qwt_example_15.png differ diff --git a/img/qwt/qwt_example_16.png b/img/qwt/qwt_example_16.png index 604297f3..c23f1593 100644 Binary files a/img/qwt/qwt_example_16.png and b/img/qwt/qwt_example_16.png differ diff --git a/img/qwt/qwt_example_17.png b/img/qwt/qwt_example_17.png new file mode 100644 index 00000000..3c8a991c Binary files /dev/null and b/img/qwt/qwt_example_17.png differ diff --git a/img/qwt/qwt_example_18.png b/img/qwt/qwt_example_18.png new file mode 100644 index 00000000..06a882b2 Binary files /dev/null and b/img/qwt/qwt_example_18.png differ diff --git a/img/qwt/qwt_example_5.png b/img/qwt/qwt_example_5.png index 7458e319..2b331542 100644 Binary files a/img/qwt/qwt_example_5.png and b/img/qwt/qwt_example_5.png differ diff --git a/img/qwt/qwt_example_6.png b/img/qwt/qwt_example_6.png index 2ab6dee6..e09ff14d 100644 Binary files a/img/qwt/qwt_example_6.png and b/img/qwt/qwt_example_6.png differ diff --git a/img/qwt/qwt_example_7.png b/img/qwt/qwt_example_7.png index f1e6c1c8..78a8afb1 100644 Binary files a/img/qwt/qwt_example_7.png and b/img/qwt/qwt_example_7.png differ diff --git a/img/qwt/qwt_example_8.png b/img/qwt/qwt_example_8.png index d74135d5..c8919cd3 100644 Binary files a/img/qwt/qwt_example_8.png and b/img/qwt/qwt_example_8.png differ diff --git a/img/qwt/qwt_example_9.png b/img/qwt/qwt_example_9.png index aef0fd0d..88ef18b1 100644 Binary files a/img/qwt/qwt_example_9.png and b/img/qwt/qwt_example_9.png differ diff --git a/img/unicodeplots/unicodeplots_example_1.png b/img/unicodeplots/unicodeplots_example_1.png index 5277be1a..823a1904 100644 Binary files a/img/unicodeplots/unicodeplots_example_1.png and b/img/unicodeplots/unicodeplots_example_1.png differ diff --git a/img/unicodeplots/unicodeplots_example_11.png b/img/unicodeplots/unicodeplots_example_11.png index fa76b905..cfcecdc5 100644 Binary files a/img/unicodeplots/unicodeplots_example_11.png and b/img/unicodeplots/unicodeplots_example_11.png differ diff --git a/img/unicodeplots/unicodeplots_example_12.png b/img/unicodeplots/unicodeplots_example_12.png index 3304a905..593420a7 100644 Binary files a/img/unicodeplots/unicodeplots_example_12.png and b/img/unicodeplots/unicodeplots_example_12.png differ diff --git a/img/unicodeplots/unicodeplots_example_13.png b/img/unicodeplots/unicodeplots_example_13.png index b7b78362..c09ad607 100644 Binary files a/img/unicodeplots/unicodeplots_example_13.png and b/img/unicodeplots/unicodeplots_example_13.png differ diff --git a/img/unicodeplots/unicodeplots_example_14.png b/img/unicodeplots/unicodeplots_example_14.png index 68905333..09266e13 100644 Binary files a/img/unicodeplots/unicodeplots_example_14.png and b/img/unicodeplots/unicodeplots_example_14.png differ diff --git a/img/unicodeplots/unicodeplots_example_15.png b/img/unicodeplots/unicodeplots_example_15.png index 0f7114cb..3b05b0c0 100644 Binary files a/img/unicodeplots/unicodeplots_example_15.png and b/img/unicodeplots/unicodeplots_example_15.png differ diff --git a/img/unicodeplots/unicodeplots_example_16.png b/img/unicodeplots/unicodeplots_example_16.png index 6b15d164..35780fb9 100644 Binary files a/img/unicodeplots/unicodeplots_example_16.png and b/img/unicodeplots/unicodeplots_example_16.png differ diff --git a/img/unicodeplots/unicodeplots_example_17.png b/img/unicodeplots/unicodeplots_example_17.png new file mode 100644 index 00000000..d6b5d981 Binary files /dev/null and b/img/unicodeplots/unicodeplots_example_17.png differ diff --git a/img/unicodeplots/unicodeplots_example_18.png b/img/unicodeplots/unicodeplots_example_18.png new file mode 100644 index 00000000..7508e2b2 Binary files /dev/null and b/img/unicodeplots/unicodeplots_example_18.png differ diff --git a/img/unicodeplots/unicodeplots_example_5.png b/img/unicodeplots/unicodeplots_example_5.png index e2827dc3..2b779bdb 100644 Binary files a/img/unicodeplots/unicodeplots_example_5.png and b/img/unicodeplots/unicodeplots_example_5.png differ diff --git a/img/unicodeplots/unicodeplots_example_6.png b/img/unicodeplots/unicodeplots_example_6.png index c24d1032..aa91da6c 100644 Binary files a/img/unicodeplots/unicodeplots_example_6.png and b/img/unicodeplots/unicodeplots_example_6.png differ diff --git a/img/unicodeplots/unicodeplots_example_7.png b/img/unicodeplots/unicodeplots_example_7.png index 19b16ce1..7c35f8c5 100644 Binary files a/img/unicodeplots/unicodeplots_example_7.png and b/img/unicodeplots/unicodeplots_example_7.png differ diff --git a/img/unicodeplots/unicodeplots_example_8.png b/img/unicodeplots/unicodeplots_example_8.png index 5a78d6a5..0493ca98 100644 Binary files a/img/unicodeplots/unicodeplots_example_8.png and b/img/unicodeplots/unicodeplots_example_8.png differ diff --git a/img/unicodeplots/unicodeplots_example_9.png b/img/unicodeplots/unicodeplots_example_9.png index 78411521..25f6ebae 100644 Binary files a/img/unicodeplots/unicodeplots_example_9.png and b/img/unicodeplots/unicodeplots_example_9.png differ