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 On Sunday, September 25, 2016 at 3:15:57 PM UTC+2, K leo wrote: > > 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? >
