-
I found myself privately today hacking together some functions to produce [Shewart Control Charts](https://en.wikipedia.org/wiki/Control_chart) using Gadfly as a backend. If I were to write it, would …
-
Problem
=====
```julia
plot((x, y)->x+y/2.0, 0.1, 5, -1, 3, Guide.Title("My Title"))
```
yields this error:
```
ERROR: Layers can't be used with elements of type Gadfly.Guide.Title
Stacktrac…
-
So I have an issue executing Julia code on sublime takes around more than 20 seconds. Compare the same code in python in sublime text takes 3 seconds.
Second problem is Gadfly graphs do not display a…
-
I'm porting some ggplot code that works in R to Gadfly. With a sufficiently large DataFrame, I run the following code.
```
plot(d_p2, x=:runtime,y=:loglik, group=:group, xgroup=:dataset,
Geom.s…
-
In trying to save a plot in Gadfly the axis labels end up being messed up. The following code produces a figure with messed up labels (which is below).
```
using DataFrames
using Gadfly, Cairo, F…
-
Hi,
I think this is related to the use of HTML in Pluto that has been recently merged/tagged (Compose 0.9.3): https://github.com/GiovineItalia/Compose.jl/commit/3dbc5a020dbdf300cb0b1c059acbe4436761…
-
I was trying to plot two traces of points over a function contour:
```
df = vcat(DataFrame(x = rand(100), y = rand(100), v = :one),
DataFrame(x = rand(100), y = rand(100), v = :two))
p…
-
Hi, as you mentioned in https://github.com/dcjones/Gadfly.jl/issues/79 you clearly seem to have plans for implementing dashed lines and hopefully other types of lines here, but since I couldn't find a…
-
```
Gadfly.plot(Gadfly.layer([1 2 "aaaa";1 2 "bbbb"; 1 2 "cccccc"; 1 2 "ddddddd"], x=Gadfly.Col.value(1), y=Gadfly.Col.value(2), label=Gadfly.Col.value(3), color=Gadfly.Col.value(3), Gadfly.Geom.poin…
-
```Julia
using Gadfly
using DataFrames
f(x,y)=x^2+y^2
xs=-1:0.01:1
ys=-1:0.01:1
mat=[
0 0 "A";
0.5 0.5 "A";
0 0 "B";
0.5 -0.5 "B";
0 0 "C";
-0.5 0.5 "C"
]
df=Data…