Your vector is of type Any and the method requires vectors of Real numbers. You should convert your vector to Float64 or something related.
convert(Vector{Float64},data) where data is your vector should do it.
Likely the package should relax this restriction though.