-
Hey developers,
I cannot imagine that I am the only one with this problem, but I have problems with Gadfly and `Geom.histogram` (same issue also with `Geom.bar` & `Geom.hair`)
In science everyone …
-
Hi! I have code like this:
``` julia
using Gadfly
using RDatasets
iris = dataset("datasets", "iris")
plot(iris, x = :SepalLength, y = :PetalLength, Geom.point, Geom.smooth)
```
I'd like to color p…
-
I'm preparing a set of figures for a paper using Gadfly. I'm not sure if one is supposed to reference things like this (either Julia or particular packages like Gadfly). Do you happen to know?
In any…
-
If I understand correctly, Gadfly currently focuses on 2D plotting mainly because drawing in 3D is a quite different endeavor. However, there are several types of plots that visualize 3D data on a 2D …
-
Several of the files are getting unwieldy in size, especially `statistics.jl`, `guide.jl`, and `Gadfly.jl`. I think it would make sense to break these up like what was done for Geoms. Thoughts?
```…
-
This looks wonky:
``` julia
In [1]: using Gadfly; plot(Geom.bar, x=1:10, y=1:10, Scale.x_log10)
Out[1]:
```
![screen shot 2014-06-17 at 5 18 37 pm](https://cloud.githubusercontent.com/assets/1732/33…
-
Is there a way to add or pass on labels to `Geom.contour` in Gadfly currently ?
I tried searching various forums and groups but I did not find any info on this.
Thanks.
-
When `Gadfly.plot()` fails, it displays `Plot(...)` but that doesn't help me figure out what's wrong. It would be great if I could get some helpful diagnostic messages when the plotting fails.
-
```julia
using Unitful
using Gadfly
using Random
Random.seed!(45)
xs = rand(10) * u"μm"
ys = rand(10) * u"μm"
plot(x=xs, y=ys, Geom.point) # works fine
```
![image](https://user-image…
-
Hi,
I'm using [GraphPlot.jl](https://github.com/JuliaGraphs/GraphPlot.jl) which uses Compose.jl for drawing SVGs. As far as I can see that library uses the text() function to draw those labels. I w…