examples and readme
@ -13,6 +13,7 @@ Please add wishlist items, bugs, or any other comments/questions to the issues l
|
|||||||
- [Qwt.jl](docs/qwt_examples.md)
|
- [Qwt.jl](docs/qwt_examples.md)
|
||||||
- [Gadfly.jl](docs/gadfly_examples.md)
|
- [Gadfly.jl](docs/gadfly_examples.md)
|
||||||
- [UnicodePlots.jl](docs/unicodeplots_examples.md)
|
- [UnicodePlots.jl](docs/unicodeplots_examples.md)
|
||||||
|
- [PyPlot.jl](docs/pyplot_examples.md)
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|||||||
@ -52,6 +52,9 @@ const examples = PlotExample[
|
|||||||
PlotExample("Lots of line types",
|
PlotExample("Lots of line types",
|
||||||
"Options: (:line, :step, :stepinverted, :sticks, :dots, :none, :heatmap, :hexbin, :hist, :bar) \nNote: some may not work with all backends",
|
"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"]))]),
|
[:(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",
|
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",
|
"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],
|
[:(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!
|
# run it!
|
||||||
# note: generate separately so it's easy to comment out
|
# note: generate separately so it's easy to comment out
|
||||||
# generate_markdown(:qwt)
|
generate_markdown(:qwt)
|
||||||
# generate_markdown(:gadfly)
|
generate_markdown(:gadfly)
|
||||||
# generate_markdown(:unicodeplots)
|
generate_markdown(:unicodeplots)
|
||||||
generate_markdown(:pyplot)
|
generate_markdown(:pyplot)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
|
|||||||
Note: This is only supported with Qwt right now
|
Note: This is only supported with Qwt right now
|
||||||
|
|
||||||
```julia
|
```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")
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -72,16 +72,6 @@ plot(Vector[rand(10),rand(20)]; marker=:ellipse,markersize=8,colors=[:red,:blue]
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Build plot in pieces
|
|
||||||
|
|
||||||
Start with a base plot...
|
|
||||||
|
|
||||||
```julia
|
|
||||||
plot(rand(100) / 3; reg=true,fillto=0)
|
|
||||||
```
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
###
|
###
|
||||||
|
|
||||||
and add to it later.
|
and add to it later.
|
||||||
@ -97,7 +87,7 @@ scatter!(rand(100); markersize=6,color=:blue)
|
|||||||
|
|
||||||
|
|
||||||
```julia
|
```julia
|
||||||
heatmap(randn(10000),randn(10000); nbins=200)
|
heatmap(randn(10000),randn(10000); nbins=100)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -113,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### 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"])
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 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)
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Bar
|
### Bar
|
||||||
|
|
||||||
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
|
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))
|
bar(randn(1000))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Histogram
|
### Histogram
|
||||||
|
|
||||||
@ -131,7 +143,7 @@ note: fillto isn't supported on all backends
|
|||||||
histogram(randn(1000); nbins=50,fillto=20)
|
histogram(randn(1000); nbins=50,fillto=20)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Subplots
|
### 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)
|
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Adding to subplots
|
### 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)
|
subplot(randn(100,5); n=4)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
###
|
###
|
||||||
|
|
||||||
@ -166,5 +178,5 @@ subplot(randn(100,5); n=4)
|
|||||||
subplot!(randn(100,3))
|
subplot!(randn(100,3))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@ -113,6 +113,17 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### 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"])
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Lots of marker types
|
### Lots of marker types
|
||||||
|
|
||||||
Options: (:none, :ellipse, :rect, :diamond, :utriangle, :dtriangle, :cross, :xcross, :star1, :star2, :hexagon)
|
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)
|
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)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Bar
|
### Bar
|
||||||
|
|
||||||
@ -132,7 +143,7 @@ x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints
|
|||||||
bar(randn(1000))
|
bar(randn(1000))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Histogram
|
### Histogram
|
||||||
|
|
||||||
@ -142,5 +153,5 @@ note: fillto isn't supported on all backends
|
|||||||
histogram(randn(1000); nbins=50,fillto=20)
|
histogram(randn(1000); nbins=50,fillto=20)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
|
|||||||
Note: This is only supported with Qwt right now
|
Note: This is only supported with Qwt right now
|
||||||
|
|
||||||
```julia
|
```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")
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -97,7 +97,7 @@ scatter!(rand(100); markersize=6,color=:blue)
|
|||||||
|
|
||||||
|
|
||||||
```julia
|
```julia
|
||||||
heatmap(randn(10000),randn(10000); nbins=200)
|
heatmap(randn(10000),randn(10000); nbins=100)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -113,6 +113,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### 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"])
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 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)
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Bar
|
### Bar
|
||||||
|
|
||||||
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
|
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))
|
bar(randn(1000))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Histogram
|
### Histogram
|
||||||
|
|
||||||
@ -131,7 +153,7 @@ note: fillto isn't supported on all backends
|
|||||||
histogram(randn(1000); nbins=50,fillto=20)
|
histogram(randn(1000); nbins=50,fillto=20)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Subplots
|
### 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)
|
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Adding to subplots
|
### 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)
|
subplot(randn(100,5); n=4)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
###
|
###
|
||||||
|
|
||||||
@ -166,5 +188,5 @@ subplot(randn(100,5); n=4)
|
|||||||
subplot!(randn(100,3))
|
subplot!(randn(100,3))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
@ -57,7 +57,7 @@ Use the `axis` or `axiss` arguments.
|
|||||||
Note: This is only supported with Qwt right now
|
Note: This is only supported with Qwt right now
|
||||||
|
|
||||||
```julia
|
```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")
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
@ -103,6 +103,28 @@ plot(rand(20,4); linetypes=[:line,:step,:sticks,:dots],labels=["line","step","st
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### 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"])
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### 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)
|
||||||
|
```
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Bar
|
### Bar
|
||||||
|
|
||||||
x is the midpoint of the bar. (todo: allow passing of edges instead of midpoints)
|
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))
|
bar(randn(1000))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Histogram
|
### Histogram
|
||||||
|
|
||||||
@ -121,7 +143,7 @@ note: fillto isn't supported on all backends
|
|||||||
histogram(randn(1000); nbins=50,fillto=20)
|
histogram(randn(1000); nbins=50,fillto=20)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Subplots
|
### 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)
|
subplot(randn(100,5); layout=[1,1,3],linetypes=[:line,:hist,:dots,:step,:bar],nbins=10,legend=false)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Adding to subplots
|
### 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)
|
subplot(randn(100,5); n=4)
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
###
|
###
|
||||||
|
|
||||||
@ -156,5 +178,5 @@ subplot(randn(100,5); n=4)
|
|||||||
subplot!(randn(100,3))
|
subplot!(randn(100,3))
|
||||||
```
|
```
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 84 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 41 KiB |
BIN
img/gadfly/gadfly_example_17.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
img/gadfly/gadfly_example_18.png
Normal file
|
After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 36 KiB |
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 0 B |
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 90 KiB |
|
Before Width: | Height: | Size: 184 KiB After Width: | Height: | Size: 199 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 58 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 17 KiB |
BIN
img/pyplot/pyplot_example_15.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 29 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 43 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 35 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 8.5 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 19 KiB |
BIN
img/qwt/qwt_example_17.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
img/qwt/qwt_example_18.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
|
Before Width: | Height: | Size: 9.7 KiB After Width: | Height: | Size: 9.9 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.3 KiB |
|
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
|
Before Width: | Height: | Size: 142 KiB After Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 101 KiB After Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 57 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 68 KiB |
BIN
img/unicodeplots/unicodeplots_example_17.png
Normal file
|
After Width: | Height: | Size: 67 KiB |
BIN
img/unicodeplots/unicodeplots_example_18.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 65 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 64 KiB |
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 57 KiB |