On 26 August 2015 at 17:14, Nils Gudat <[email protected]> wrote:

> 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.
>
>
Thanks. That is very helpful.

Cheers,
Daniel.

Reply via email to