Closed ViralBShah closed 9 years ago
Thanks for the report; I'll take a look at it as soon as I have time, but unfortunately probably not before this weekend. PR's are very welcome (although I guess you specifically are at least as busy as I am!) :)
@ViralBShah: Using the latest master of Julia, Gadfly and Contour (as well as a couple of other dependencies of Gadfly) I can't reproduce the problem:
xs = collect(Float64, -pi:0.1:pi)
ys = copy(x)
zs = [sin(x) * cos(y) for x in xs, y in ys]
using Gadfly
plot(x=xs, y=ys, z=zs, Geom.contour)
works and produces the expected plot. What versions are you on? Can you give a code sample that reproduces the error?
Edit: OK, after Pkg.free("Contour")
I can reproduce. I'll tag a new version promptly; can you do Pkg.update()
(in a little while) and see if the problem is solved?
Thanks! I was using the tagged versions.
The error was on using Gadfly
, and this one is now fixed. Failing in Grid.jl now.
Great! Thanks again for the report!
This is breaking Gadfly on 0.4 master as well right now.