Here you will find some (most?) of the ProPlot examples from the documentation, but translated to Julia using PyCall.jl and PyPlot.jl.
Note you must install ProPlot first. (And probably some other things.)
Click on the images below to be directed to the julia code that produced it.
-
The scoping rules are a bit different between Python and Julia, which require some tweaking for the examples to work.
-
You can't format all the subplots at once with
axs.format
AFAIK, so you have to loop through all axes and format each of them. -
f, axs = proplot.subplots()
returns a vector of axes, even if you specify multiple columns, so that you need to reshape (and transpose) theaxs
array to get access to the axes in the "expected" way. -
I saved the images via
savefig("X.png")
, which did not preserve some features.