Re: [julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-11 Thread Ferran Mazzanti
Sorry for sneaking in again, but I have tried to extrapolate the examples in the notebook (thanks again Scott) to include a fifth plot below (that is, to get the same structure but with an additional plot at the bottom, spanning the whole width and a smaller height) and fail. I can get it to wo

Re: [julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-08 Thread Tom Breloff
Even better... you should add a tutorial for how to do: https://github.com/tbreloff/Plots.jl/issues/541 On Tue, Nov 8, 2016 at 12:00 PM, Scott T wrote: > Sure, happy to add to ExamplePlots! Do you have any more suggestions for > layout-related features you'd like to showcase? Inset plots? I thin

Re: [julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-08 Thread Scott T
Sure, happy to add to ExamplePlots! Do you have any more suggestions for layout-related features you'd like to showcase? Inset plots? I think the key things to get across are how to define layouts and how to overlay/facet series within a layout. Scott On Tuesday, 8 November 2016 16:28:11 UTC,

Re: [julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-08 Thread Tom Breloff
Thanks for putting those examples together Scott. Do you want to contribute that to ExamplePlots? Ferran: as Scott has shown nicely, there's an ton of different ways to do what you want, and the "right" way is going to depend on your problem... what the layouts/data look like. Many times it's ea

[julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-08 Thread Ferran Mazzanti
Oh! Scott you're very kind to take your time helping me with the notebook... thanks a lot. I'll take a careful look and report back if I find problems. Best, Ferran. On Tuesday, November 8, 2016 at 1:22:20 PM UTC+1, Scott T wrote: > > You can break down the plot command into chunks and then call

[julia-users] Re: Plots.jl: layout of several plots, with more than one curve per plot

2016-11-08 Thread Scott T
You can break down the plot command into chunks and then call plot on those chunks to build up a plot from several pieces. In this way, you can make individual plots with multiple series. Then you can combine them according to your desired layout. This isn't the best place to post a full exampl