So I setup Juno on Lighttable and it works except for plotting in 
Compose.jl or Gadfly.jl I am using the lateset stable version of Julia with 
the latest lighttable version and ipython for python 3.3

Here is my code:


using Gadfly

plot(x=collect(1:100), y=sort(rand(100)))



Will give me this error

   - 
   
   Warning: New definition 
       mean(AbstractArray{T,N},WeightVec{W,Vec<:AbstractArray{T<:Real,1}}) at 
C:\Users\0\.julia\StatsBase\src\weights.jl:234
   is ambiguous with: 
       mean(DataArray{T,N},Any) at 
C:\Users\0\.julia\DataArrays\src\reducedim.jl:335.
   To fix, define 
       mean(DataArray{T,N},WeightVec{W,Vec<:AbstractArray{T<:Real,1}})
   before the new definition.
   
   - 
   
   Warning: Method definition 
stdm(AbstractArray{T<:Real,N},AbstractArray{T<:Real,N},Int64) in module 
StatsBase at C:\Users\0\.julia\StatsBase\src\moments.jl:63 overwritten in 
module StatsBase at C:\Users\0\.julia\StatsBase\src\moments.jl:63.
   Warning: Method definition quantile(AbstractArray{T<:Real,N},) in module 
StatsBase
   
   - 
   
   at C:\Users\0\.julia\StatsBase\src\scalarstats.jl:158 overwritten in module 
StatsBase at C:\Users\0\.julia\StatsBase\src\scalarstats.jl:158.
   
   - 
   
   Warning: New definition 
       &(DataArray{Bool,N},Union(Bool,AbstractArray{Bool,N})) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:547
   is ambiguous with: 
       &(Union(Bool,AbstractArray{Bool,N}),DataArray{Bool,N}) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:547.
   To fix, define 
       &(DataArray{Bool,N},DataArray{Bool,N})
   before the new definition.
   Warning: New definition 
       |(DataArray{Bool,N},Union(Bool,AbstractArray{Bool,N})) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:548
   is ambiguous with: 
       |(Union(Bool,AbstractArray{Bool,N}),DataArray{Bool,N}) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:548.
   To fix, define 
       |(DataArray{Bool,N},DataArray{Bool,N})
   before the new definition.
   Warning: New definition 
       $(DataArray{Bool,N},Union(Bool,AbstractArray{Bool,N})) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:549
   is ambiguous with: 
       $(Union(Bool,AbstractArray{Bool,N}),DataArray{Bool,N}) at 
C:\Users\0\.julia\DataArrays\src\operators.jl:549.
   To fix, define 
       $(DataArray{Bool,N},DataArray{Bool,N})
   before the new definition.
   Warning: New definition 
       isequal(NAtype,Any) at C:\Users\0\.julia\DataArrays\src\operators.jl:558
   is ambiguous with: 
       isequal(Any,NAtype) at C:\Users\0\.julia\DataArrays\src\operators.jl:559.
   To fix, define 
       isequal(NAtype,NAtype)
   before the new definition.
   Warning: New definition 
       isequal(Any,NAtype) at C:\Users\0\.julia\DataArrays\src\operators.jl:559
   is ambiguous with: 
       isequal(NAtype,Any) at C:\Users\0\.julia\DataArrays\src\operators.jl:558.
   To fix, define 
       isequal(NAtype,NAtype)
   before the new definition.
   Warning: New definition 
       isless(NAtype,Any) at C:\Users\0\.julia\DataArrays\src\operators.jl:561
   is ambiguous with: 
       isless(Any,NAtype) at C:\Users\0\.julia\DataArrays\src\operators.jl:562.
   To fix, define 
       isless(NAtype,NAtype)
   before the new definition.
   Warning: New definition 
       isless(Any,NAtype) at C:\Users\0\.julia\DataArrays\src\operators.jl:562
   is ambiguous with: 
       isless(NAtype,Any) at C:\Users\0\.julia\DataArrays\src\operators.jl:561.
   To fix, define 
       isless(NAtype,NAtype)
   before the new definition.
   
   
.
It goes on like this for a long time. Anything that does not involve 
plotting is ok. If I cannot solve this I think I will try sublimtext 3 as 
the IDE

Reply via email to