You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here you will find some (most?) of the [ProPlot](https://proplot.readthedocs.io/en/latest/index.html) examples from the documentation, but translated to Julia using [PyCall.jl](https://github.com/JuliaPy/PyCall.jl) and [PyPlot.jl](https://github.com/JuliaPy/PyPlot.jl).
4
+
Here you will find some (most?) of the [ProPlot](https://proplot.readthedocs.io/en/latest/index.html) examples from the documentation, but translated to Julia using [PyCall.jl](https://github.com/JuliaPy/PyCall.jl).
5
5
6
6
Note you must install ProPlot first. (And probably some other things.)
7
7
@@ -14,22 +14,28 @@ Click on the images below to be directed to the julia code that produced it.
@@ -39,4 +45,4 @@ Click on the images below to be directed to the julia code that produced it.
39
45
40
46
1.`f, axs = proplot.subplots()` returns a vector of axes, even if you specify multiple columns, so that you need to reshape (and transpose) the `axs` array to get access to the axes in the "expected" way.
41
47
42
-
1. I saved the images via `savefig("X.png")`, which did not preserve some features.
48
+
1. I saved the images via `f.savefig("X.svg", transparent=false)`.
0 commit comments