Re: [julia-users] Plots with scale bars

2016-08-10 Thread Tom Breloff
Sure. You could maybe make a recipe, or just make a function that does this. You'll probably want to make use of 'axis_limits' to get the data range. Like this: amin, amax = axis_limits(plt[1][:yaxis]) Here 'plt[1]' returns the first Subplot. On Wednesday, August 10, 2016, Islam Badreldin

Re: [julia-users] Plots with scale bars

2016-08-08 Thread Tom Breloff
ml','t...@breloff.com');>> > Sent: Monday, August 8, 2016 1:03 PM > Subject: Re: [julia-users] Plots with scale bars > To: <julia-users@googlegroups.com > <javascript:_e(%7B%7D,'cvml','julia-users@googlegroups.com');>> > > > There's a bunchof ways to d

Re: [julia-users] Plots with scale bars

2016-08-08 Thread Islam Badreldin
: Tom Breloff <t...@breloff.com> Sent: Monday, August 8, 2016 1:03 PM Subject: Re: [julia-users] Plots with scale bars To: <julia-users@googlegroups.com> There's a bunchof ways to do this with Plots. Draw the lines and add annotations or add an inset subplot with labels? I'm not a

Re: [julia-users] Plots with scale bars

2016-08-08 Thread Tom Breloff
There's a bunchof ways to do this with Plots. Draw the lines and add annotations or add an inset subplot with labels? I'm not at a computer... maybe I'll throw together an example later. On Monday, August 8, 2016, Islam Badreldin wrote: > > > Hello, > > Is there a