-
I got curious about "time to first plot" and did some profiling to see
where most of the problem was coming from. I thought it might be
useful to share the results here for other's reference so that…
-
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 …
-
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…
-
```
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…
-
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 Tim (and Cody),
I am trying to run BlockRegistration.
I get error when I ran plotting. I copied and pasted the error message and my script.
The error message:
julia> plot(x=λs, y=datapenalty, xi…
-
[feature request]
I have a graph with many nodes. can't show all node labels with `nlabels` without some ugly overlap.
but Gadfly does it nicely with their `Geom.label`. would be awesome if `Gr…
-
```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…
-
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…
-
```
> using Gadfly
> plot(x=rand(10), y=rand(10), Theme(grid_color=nothing))
MethodError: `hex` has no method matching hex(::Void)
in render at /home/juser/.julia/v0.4/Gadfly/src/guide.jl:611
in ren…