Le mercredi 28 septembre 2016 à 04:44 -0700, K leo a écrit :
> Thanks for the reply.  Then this is an issue in DataFrames.
Yes, but one that is already fixed in master by removing the dependency
on DataArrays.


Regards

> > As the error says, they both export a function called rle, so it is
> > not possible to know which one you're trying to call, if you don't
> > qualify them. Qualifying means writing "package name dot" and then
> > the function, as seen below
> > 
> > module A
> > export f
> > f(x::Int64) = x
> > end
> > 
> > module B
> > export f
> > f(x::Int64) = x+1
> > end
> > 
> > using A, B
> > 
> > f(3) # error
> > A.f(3) # returns x = 3
> > B.f(3) # returns x + 1 = 3 + 1
> > 
> > 
> > 
> > > I get a few warning messages like this often.  Does it mean that
> > > DataFrames package need to be updated, or that I need to do
> > > something in my user code?
> > > 
> > 

Reply via email to