-
I prefer use Gadfly in REPL rather IJulia (because I can not use Ctrl-C to break running script in IJulia). The browser (firefox) in my server will pop-up through X11 on my screen after Gadfly.plot. H…
-
I had a piece of code that accidentaly gave Gadfly a symbol instead of an array:
``` Julia
useScale(scale,A) = scale == :log ? 10*log10(scale) : scale
layer2d(A,scale,style) = layer(x = A[:,1], y = u…
ghost updated
5 years ago
-
This used to work, but now (since the recent 0.4.0 release) yields an error
``` julia
> Gadfly.draw(Gadfly.SVGJS(100,100), plot(x=[1,2,3], y=[3,4,5]))
LoadError: MethodError: `convert` has no method …
-
Since Gadfly is using DataFrames and DataArrays I was surprised that it seems not to handle `NA`
``` julia
data = @data [1.0, NA, 2.0]
plot(x = 1:length(data), y = data)
```
In code where I currentl…
-
Since any function call can now be called in a "vectorized" form using broadcast syntax, the vectorized form and property methods should now be deprecated for the sake of maintainability. In some scen…
-
It would be nice if the types here had Plots.jl recipes so that way the plots could match the outputs of a lot of other packages. Right now this seems confined to Gadfly.
-
@dcjones and @bdeonovic - when drawing a `gridstack` result, x-axis tick labels can get cut off if they run past the right-hand-side of the plot region. Here's an example...
``` julia
using Gadfly
u…
-
Was speaking with @shashi and @rohitvarkey about this package. I think it will be great to have this as a default with Gadfly, so that we can show plot windows from a REPL, without too much fuss.
Wou…
-
Hello, really nice project here!
I'm wondering whether the developers would be open to giving permission for this to be incorporated in a directory for other languages and packages? There's no LICENS…
-
As my thesis is finished I want to contribute something to the piece of software I used to generate my plots :)
It would be useful to me (and quite probably others) to see how to write patches/pull …