On Saturday, May 21, 2016 at 11:25:10 AM UTC-4, Henri Girard wrote: > > A graphic with border > > plot(x*x,x,-2,2, frame = True, figsize= 4,fontsize=8,aspect_ratio=1) >
As I understand it, those aren't valid plot options in Python Matplotlib either, so I'm not sure where you're getting this. Googling "pyplot without frame" turns up http://stackoverflow.com/questions/22016965/removing-frame-while-keeping-axes-in-pyplot-subplots, which works fine in Julia with PyPlot, e.g. using PyPlot x = linspace(0,1,100) plot(x.*x, x) ax = gca() for spine in values(ax[:spines]) spine[:set_visible](false) end
