Re: [julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Sisyphuss
I like your approach and the idea of separating interface from library. This interface allows us to plot more easily, which is very handy when we are doing data exploration. Please go on and keep me updated ! On Monday, August 24, 2015 at 5:37:23 PM UTC+2, Tom Breloff wrote: > > Sisyphuss: T

Re: [julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread wildart
I quite agree with Tom, various data interfaces are could be easily implemented it has nothing to do with underling plotting routines. @Tom In light of RFC: unify plotting packages under a common organization , it would be a good effort to descri

Re: [julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Tom Breloff
Sisyphuss: This is the approach I have taken with Qwt.jl: `plot(rand(100,5))` will plot 5 lines, `plot(rand(100,2), colors=[:red,:blue])` will plot 2 lines (red/blue), 'subplot(rand(100,4))` will create a 2x2 grid of subplots, one for each column, etc. This interface has nothing to do with Qwt..

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Sisyphuss
Personally, I would like the following functionality: 1) `plot(X)`, where `X` is a high-dimension array, to plot each column of `X` on a single canvas (Matlab syntax); 2) `plot(X, c("red", "green", "blue"))` to plot each column with different color (the color vector is broadcast) (R syntax). O

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread wildart
Essentially, both packages have very similar set of functions - various 2D and 3D plots, handling axes, views & text. But PLplot is one binary library compiled on many platforms, in opposite to matlibplot which is a big suite of python libraries (in Julia case add a PyCall & PyPlot wrappers). O

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread wildart
PLplot cannot use new colors, except predefined before initialization, during plotting. This makes usage of Compose (primitives drawing backend package for Gadfly) somewhat hard because information about primitive colors appear as as you parse plot structure. Moreover, PLplot has large collecti

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Andreas Lobinger
On Monday, August 24, 2015 at 3:48:03 PM UTC+2, Daniel Carrera wrote: > > > On Sunday, 23 August 2015 15:53:37 UTC+2, Andreas Lobinger wrote: >> >> >> Can you provide some background why and where's the problem with >> DataFrame in which plotting package? >> > > > DataFrame is an external packag

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Andreas Lobinger
I had overlooked this: On Sunday, August 23, 2015 at 6:34:38 AM UTC+2, wil...@gmail.com wrote: > > > I currently wrapped routings which cover basic functionality and allow to > run most of examples. I've tried to make a Gadfly backend but unfortunately > the way PLplot works with colors makes it

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Daniel Carrera
On Sunday, 23 August 2015 15:53:37 UTC+2, Andreas Lobinger wrote: > > > Can you provide some background why and where's the problem with DataFrame > in which plotting package? > DataFrame is an external package. That seems like reason enough. Is there a strong reason to use DataFrame instead

[julia-users] Re: ANN: PLplot.jl

2015-08-24 Thread Daniel Carrera
Hello, Thank you for your work. Could you give me an idea of the pros and cons of PLplot versus Matplotlib? Cheers, Daniel. On Sunday, 23 August 2015 06:34:38 UTC+2, wil...@gmail.com wrote: > > Hi all, > > I've started working on a Julia PLplot wrapper >

[julia-users] Re: ANN: PLplot.jl

2015-08-23 Thread Sisyphuss
I am not expert of the DataFrame package. So I cannot tell the downside of DataFrame. However, since DataFrame is a part of the standard library, in my opinion, the support for build-in structures such as AbstractArray should be the priority. As I know, most functionalities of Gadfly is implem

[julia-users] Re: ANN: PLplot.jl

2015-08-23 Thread Andreas Lobinger
On Sunday, August 23, 2015 at 1:47:06 PM UTC+2, Sisyphuss wrote: > > I hope this package can be based on the data structure `AbstractArray` > instead of `DataFrame`. > Can you provide some background why and where's the problem with DataFrame in which plotting package?

[julia-users] Re: ANN: PLplot.jl

2015-08-23 Thread Sisyphuss
I hope this package can be based on the data structure `AbstractArray` instead of `DataFrame`. On Sunday, August 23, 2015 at 6:34:38 AM UTC+2, wil...@gmail.com wrote: > > Hi all, > > I've started working on a Julia PLplot wrapper > . PLplot is a powerful >