Re: [julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-03 Thread j verzani
You can likely use the `@manipulate` macro of `Interact` with the `plotly` 
backend of `Plots` to achieve this with just a bit of coding.

On Wednesday, February 3, 2016 at 9:30:10 AM UTC-5, Michael Landis wrote:
>
> I would appreciate suggestions on which back-end might best facilitate 
> visualizing and manipulating a six dimensional model, maybe using three 
> dimensional projections where the user can select (via check box?) any 
> three dimensions and  subsequently rotate/zoom the resulting 3D projection.
>
> On Monday, February 1, 2016 at 6:45:46 AM UTC-8, Tom Breloff wrote:
>>
>> Michael: If you have a specific plot-type in mind let me know... I'm 
>> usually pretty quick to whip up an example or point you in the right 
>> direction.  Not all features are documented well (yet) so it might be 
>> faster to ask for help.
>>
>> On Mon, Feb 1, 2016 at 4:48 AM, Michael Landis  
>> wrote:
>>
>>> Gadfly already working.  I will look at Breloff's Plots too. Thanks.  
>>>
>>>
>>>
>>

Re: [julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-03 Thread Michael Landis
I would appreciate suggestions on which back-end might best facilitate 
visualizing and manipulating a six dimensional model, maybe using three 
dimensional projections where the user can select (via check box?) any 
three dimensions and  subsequently rotate/zoom the resulting 3D projection.

On Monday, February 1, 2016 at 6:45:46 AM UTC-8, Tom Breloff wrote:
>
> Michael: If you have a specific plot-type in mind let me know... I'm 
> usually pretty quick to whip up an example or point you in the right 
> direction.  Not all features are documented well (yet) so it might be 
> faster to ask for help.
>
> On Mon, Feb 1, 2016 at 4:48 AM, Michael Landis  > wrote:
>
>> Gadfly already working.  I will look at Breloff's Plots too. Thanks.  
>>
>>
>>
>

[julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread David P. Sanders

With PyPlot it should be as simple as

using PyPlot

x = 0:0.01:1
plot(x, sin(x))
plot(x, cos(x))

Does this not work?


El domingo, 31 de enero de 2016, 21:53:30 (UTC-6), Michael Landis escribió:
>
> Can anyone recommend a graphics capable of plotting multiple curves on a 
> single canvas.  Python's pyplot/matplotlib multi-curve capabilities appear 
> to be unavailable within Julia (maybe I'm doing it wrong).
>


Re: [julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread Miguel Bazdresch
Gaston can do that, too. Just be sure to use master instead of the latest
release; there's tons of bug fixes and improvements. The PDF documentation
is here: https://bitbucket.org/mbaz/gaston/downloads/gastondoc-0.5.5.pdf.

-- mb

On Mon, Feb 1, 2016 at 9:45 AM, Tom Breloff  wrote:

> Michael: If you have a specific plot-type in mind let me know... I'm
> usually pretty quick to whip up an example or point you in the right
> direction.  Not all features are documented well (yet) so it might be
> faster to ask for help.
>
> On Mon, Feb 1, 2016 at 4:48 AM, Michael Landis 
> wrote:
>
>> Gadfly already working.  I will look at Breloff's Plots too. Thanks.
>>
>>
>>
>


Re: [julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread Tom Breloff
Michael: If you have a specific plot-type in mind let me know... I'm
usually pretty quick to whip up an example or point you in the right
direction.  Not all features are documented well (yet) so it might be
faster to ask for help.

On Mon, Feb 1, 2016 at 4:48 AM, Michael Landis 
wrote:

> Gadfly already working.  I will look at Breloff's Plots too. Thanks.
>
>
>


[julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread Michael Landis
Gadfly already working.  I will look at Breloff's Plots too. Thanks.  




[julia-users] Re: recommended graphics packages for multiple curves on a single canvas

2016-02-01 Thread Andreas Lobinger
Hello colleague,

Tom Breloff maintains the Plots.jl (https://github.com/tbreloff/Plots.jl)  
package which is a meta-plotting thing (a layer above the actual plotting 
and rendering toolkits) and he collects some examples in 
https://github.com/tbreloff/ExamplePlots.jl, e.g. 
https://github.com/tbreloff/ExamplePlots.jl/tree/master/docs 
More than 1 curve on a single plot is supported by most backends, subplot 
by many.

Hope that helps,
   Andreas

On Monday, February 1, 2016 at 4:53:30 AM UTC+1, Michael Landis wrote:
>
> Can anyone recommend a graphics capable of plotting multiple curves on a 
> single canvas.  Python's pyplot/matplotlib multi-curve capabilities appear 
> to be unavailable within Julia (maybe I'm doing it wrong).
>