FWIW, I always think the fig/ax syntax aligns best with Python, e.g.

fig, ax = PyPlot.subplots(2,2, ...)
ax[1,1][:plot](..., linestyle = ":", label = "...")
ax[1,1][:legend](loc="best")
ax[1,2][:hist](..., alpha = 0.5, label = "...")
fig[:title]("Some title")

with this syntax, you can more or less convert Python code to Julia 1-for-1 
by just replacing all the dot method calls with [:method]-calls.

Reply via email to