I have a long IJulia notebook that I’m going to use for a talk tomorrow at UC
Davis.
At the end, I try to use Gadfly. But I hit a bug that seems to be caused by the
preceding code as it functions in isolation:
Specifically,
julia> plot(iris, x = :SepalLength, y = :SepalWidth, color = :Species,
Geom.point)
produces this error:
no method
Distinct{ValueIterator{Dict{Symbol,ScaleElement}}}(ValueIterator{Dict{Symbol,ScaleElement}})
in render at /Users/johnmyleswhite/.julia/v0.3/Gadfly/src/Gadfly.jl:612
in writemime at /Users/johnmyleswhite/.julia/v0.3/Gadfly/src/Gadfly.jl:738
in sprint at io.jl:468
in display_dict at
/Users/johnmyleswhite/.julia/v0.3/IJulia/src/execute_request.jl:35
Any thoughts on what’s happening?
— John