I am a complete julia novice, so I may simply not understand the following. when I type
julia> d=readcsv("myfile.csv")
julia> typeof(d)
Array{Any,2}
julia> d=readcsv("myfile.csv", header=true)
julia> typeof(d)
Tuple{Array{Float64,2},Array{AbstractString,2}}
seems to interpret the header as variable names.
is header=true the default on readcsv, is the docs wrong, or am I doing something wrong?
/iaw