-
I would like to put constraints on my inputs making them either co-dependent or at least validate them take the following Gadfly plot
``` julia
@manipulate for μ in -5:5, σ in 0:5, min in -10:0, max …
-
It seems that gadfly struggles to detect ymax automatically when using Geom.bar together with
xmin, xmax. To see this compare p and p2.
```julia
using Gadfly, DataFrames
a=["A","B","C","D","A","…
-
Here's MWE:
using Gadfly, DataFrames
DF = DataFrame(x = Int[],
y = Float64[],
color = String[])
for i in 1:2000
push!(DF,(rem(i,5),div(i,5),string(div(i,5))))
…
-
I'm getting a Javascript error that prevents me from zooming / panning / interactively navigating a SVGJS Gadly plot.
Julia .3.10 w/
```
- Gadfly 0.3.13
- DataFrames …
-
I would like to be able to write
using Gadfly
p=plot(x=[1 2 3], y=[1 4 9])
draw(SVG("foo.svg", "100%","100%"),p)
so that the svg fills the browser window when using actual size (=no zooming).
And t…
-
Having just switched to experimenting with Gadfly, I was confused by the apparent behaviour in decreasing opacity of the plots as the number of points became more dense.
Essentially, this would pr…
-
Hello,
My apologies if this is not the right place to discuss this situation I am facing while using Geom.vline(). Also, not sure if this is a bug in the Gadfly package or in my code.
I want to m…
-
This may be a julia bug and not a Gadfly bug, but in any case here's how to reproduce the failure. This is with Gadfly 0.3.9, julia release-0.3/e59a325\* (0.3.2-pre+55). It's possible this is just ano…
-
# Quick list
- [x] `@api` macro to generate API methods
- [ ] a good README
- [x] `convert(::Type{Tile})` methods for Gadfly, Compose, DataFrames, and SymPy
- [x] Layouts
- [x] Good typography
- [x] B…
-
It should be possible, and fairly easy, to make a userplot recipe for facet-grids, similar to subplot_grid in Gadfly, or facetgrid in ggplot2.