ma-laforge

Results 72 comments of ma-laforge

Ok, here is an example for a simple scatter plot: ``` #Simple demo 1: Simple scatter plot #------------------------------------------------------------------------------- using InspectDR using Colors red = RGB24(1, 0, 0) green = RGB24(0,...

@skanskan: Is the above example simple enough? I ask because I could add it to the sample directory if you find it useful. #### Comment InspectDR was not really designed...

## Plots.jl solution ``` using Plots inspectdr() #Select InspectDR backend x = 0:100_000 y = rand(length(x)) #The one-liner command itself: display(plot(x, y, seriestype=:scatter)) ```

## Alternative: CData.jl / EasyPlot.jl NOTE: Plots.jl is still in the process of migrating to Julia v0.6. An alternative is to use my own simplified plotting interface (not quite as...

### Plots.jl + inspectdr(): - Designed for interactive work (Quick one-liners + progressively adding to plots). - Uses a MVC-type model to achieve goal: must select a backend **before** sending...

Yes. I don't increase area when font size increases. I will have to fix that in Plots.jl but it might take some time. ### Workaround for now You will have...

Sorry, it is very difficult to reproduce this issue without an example. If I take your example from #15: ``` using Plots inspectdr() # gr() function testPlot() P1 = plot(Plots.fakedata(50,5))...

Hmm.... I wonder if backends are supposed to support this...

Agreed. This seems to be just how Plots.jl works.

That definitely looks like a bug... but hard to pinpoint without sample code. Can you build a simple testcase that causes this issue? You could generate sample data using something...