[julia-users] Re: how to get rid of axis in Plots ?

2016-09-22 Thread Roger Herikstad
Hey, Similar question; how do I remove only the upper and right border? My personal preference is to only show the left and bottom border. In Winston, I'd do this p = Winston.plot([1,2,3],[3,4,5]) Winston.setattr(p.frame, "draw_axis", false) Thanks! On Wednesday, June 29, 2016 at 2:15:47 AM

[julia-users] Re: how to get rid of axis in Plots ?

2016-06-28 Thread Henri Girard
I just found in the same time ... Thank you :) Le mardi 28 juin 2016 17:48:34 UTC+2, Henri Girard a écrit : > > I don't see any command to get rid of axis in Plots or hide them > I tried axis=false axes =false idem with none but nothing works... > >

[julia-users] Re: how to get rid of axis in Plots ?

2016-06-28 Thread Henri Girard
Solved Le mardi 28 juin 2016 17:48:34 UTC+2, Henri Girard a écrit : > > I don't see any command to get rid of axis in Plots or hide them > I tried axis=false axes =false idem with none but nothing works... > >

[julia-users] Re: how to get rid of axis in Plots ?

2016-06-28 Thread Henri Girard
Answering myself, after reading I noticed I wasn't using the good command : Axis was wrong... They are border =false and ticks = false x=linspace(-2,2) t=linspace(-pi/4,pi/4) f(x) = sqrt(4-x^2) g(x) = -sqrt(4-x^2) plot(h,fill=g,color=:red,-2,2,legend=false,grid=false,border=false,ticks=false,asp