Sometimes when we do quick dirty scripts we don' t specify types on Vector initialization. So the output is simple. What if we try to convert Vector of Any to number vector like:
function describeTry(io::IO, a::AbstractArray)
try
describe(io, convert(Array{Float64}, a))
catch e
println(e)
println(io, "Summary Stats:")
println(io, "Length: $(length(a))")
println(io, "Type: $(string(eltype(a)))")
println(io, "Number Unique: $(length(unique(a)))")
end
return
end