You can change the figure size easily by just
figure(figsize=(xx, yy))
etcetera, exactly as in Python.
On Sunday, September 7, 2014 6:58:14 AM UTC-4, [email protected] wrote:
> BTW, you can switch to vector graphics following the indications in this
> thread (you just have to change Julia's Jupyter profile instead of creating
> a new one):
>
>
> http://stackoverflow.com/questions/17582137/ipython-notebook-svg-figures-by-default
>
As explained in
https://github.com/stevengj/PyPlot.jl#svg-output-in-ijulia
you can get SVG output by default in PyPlot by running PyPlot.svg(true)
.... this isn't the default because browsers are much slower at rendering
complex SVG plots than they are at rendering PNG.
Of course, you can also save to a vector format at any time by
savefig("foo.svg") or savefig("foo.eps").