Thanks for your help this is the simple code that used to work under 0.4.5 and now it does not:
x = linspace(1,500)
@manipulate for α=0.001:0.001:0.02, β= 0:0.1:5
Gadfly.plot(layer(x=x,y=α*x+β, Geom.line),
layer(x=series[:,1]/1000, y=series[:,2], Geom.point),
Guide.xlabel(“Longitude”), Guide.ylabel(“Disp”), Guide.title(“Disp Vs Longitude”))
end
where
series[:,4] is just a four column array
this is the error now:
MethodError: call
has no method matching call(::Array{Float64,1}, ::Base.KeyIterator{Dict{ASCIIString,Int64}})
Closest candidates are:
BoundsError()
BoundsError(::Any…)
DivideError()
…
in notify at /Users/ramon/.julia/v0.4/Interact/src/IJulia/setup.jl:77
in init_comm at /Users/ramon/.julia/v0.4/Interact/src/IJulia/setup.jl:82
in metadata at /Users/ramon/.julia/v0.4/Interact/src/IJulia/setup.jl:91
in execute_request at /Users/ramon/.julia/v0.4/IJulia/src/execute_request.jl:187
in eventloop at /Users/ramon/.julia/v0.4/IJulia/src/eventloop.jl:8
in anonymous at task.jl:447