-
This is low priority for me (as I can live without graphics in the notebook), but wanted to post it
Using the new `notebook` function, I tested it on the `https://github.com/mpastell/Weave.jl/blob/…
-
Whenever I have a Gadfly plot, Juno will continually pause as it tries to switch to "zoom" mode on the Gadfly plot. This is in OS X. I'm not sure whether this is an issue with Gadfly or with Juno.
…
-
I'd like to use a png as a background for a plot, in Compose and/or Gadfly. Is this currently possible?
-
I'm trying to hide outliers in boxplot:
``` julia
x=dataset("lattice", "singer");
x[:OUT] = false;
plot(x, x="VoicePart", y="Height",outliers="OUT",Geom.boxplot)
```
However, I got following error:
…
-
A plotting library needs to be chosen for use with any of the commands that generate plots. Ideally this would work in both the standard REPL, as well as IJulia. Possible contenders:
- [Winston](https…
-
Would there be any easy way to implement doing Kernel density estimation on transforms of variables? For example, I have a variable that is constrained to be between 0 and 1, it would be better for me…
-
Running the following _in a fresh session_:
```
using Gadfly
type MyTypeA
value::Float64
MyTypeA(v) = new(v)
end
type MyTypeB
value::Float64
MyTypeB(v::Float64) = new(v)
end
if tru…
-
Hello, I am observing an apparent "memory leak" when using Gadfly to create a PDF file from a plot.
I am using Linux Ubuntu 18.04 on Intel 64 bit and Unbuntu 19.04 on Arm 64 bit platforms.
I am usin…
-
I want to create a pull request for visual regression tests. So far, I've seen two variants, the one in Gadfly.jl, and various uses of [VisualRegressionTests.jl](https://github.com/JuliaPlots/VisualRe…
-
I am using Gadfly in Jupyter with Ijulia notebook. I can use `draw(SVG(25cm, 10cm), p1)` to display the plot in Jupyter, but I found it is not displayed in the `out[]` cell. So when I restart the kern…