The proplot examples translated to Julia using PyCall.jl and PyPlot.jl.
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.formatAFAIK, 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) theaxsarray to get access to the axes in the "expected" way.



